Remove I420VideoFrame::SwapFrame

The few remaining uses of this function are replaced with I420VideoFrame assignment, similar to scoped_refptr assignment.

BUG=1128
R=mflodman@webrtc.org, stefan@webrtc.org

Review URL: https://webrtc-codereview.appspot.com/42889004

Cr-Commit-Position: refs/heads/master@{#8844}
git-svn-id: http://webrtc.googlecode.com/svn/trunk@8844 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
magjed@webrtc.org
2015-03-24 12:43:05 +00:00
parent 2d2a30c2e2
commit deafa7b3c9
6 changed files with 2 additions and 83 deletions

View File

@ -125,7 +125,6 @@ class Vp8TestDecodedImageCallback : public DecodedImageCallback {
: decoded_frames_(0) {
}
virtual int32_t Decoded(I420VideoFrame& decoded_image) {
last_decoded_frame_.CopyFrame(decoded_image);
for (int i = 0; i < decoded_image.width(); ++i) {
EXPECT_NEAR(kColorY, decoded_image.buffer(kYPlane)[i], 1);
}
@ -141,13 +140,9 @@ class Vp8TestDecodedImageCallback : public DecodedImageCallback {
int DecodedFrames() {
return decoded_frames_;
}
void GetLastDecodedFrame(I420VideoFrame* decoded_frame) {
decoded_frame->SwapFrame(&last_decoded_frame_);
}
private:
int decoded_frames_;
I420VideoFrame last_decoded_frame_;
};
class SkipEncodingUnusedStreamsTest {