aboutsummaryrefslogtreecommitdiff
path: root/webrtc/video_decoder.h
diff options
context:
space:
mode:
authorMiguel Casas-Sanchez <mcasas@webrtc.org>2015-05-29 17:21:40 -0700
committerMiguel Casas-Sanchez <mcasas@webrtc.org>2015-05-30 00:21:56 +0000
commit4765070b8d6f024509c717c04d9b708750666927 (patch)
tree64548980e1c649e9ab2653c3388a29d33cd041ed /webrtc/video_decoder.h
parentc2cb266c93d5918f7a54fd62c07c387dde9186a2 (diff)
downloadwebrtc-4765070b8d6f024509c717c04d9b708750666927.tar.gz
Rename I420VideoFrame to VideoFrame.
This is a mechanical change since it affects so many files. I420VideoFrame -> VideoFrame and reformatted. Rationale: in the next CL I420VideoFrame will get an indication of Pixel Format (I420 for starters) and of storage type: usually UNOWNED, could be SHMEM, and in the near future will be possibly TEXTURE. See https://codereview.chromium.org/1154153003 for the change that happened in Cr. BUG=4730, chromium:440843 R=jiayl@webrtc.org, niklas.enbom@webrtc.org, pthatcher@webrtc.org Review URL: https://webrtc-codereview.appspot.com/52629004 Cr-Commit-Position: refs/heads/master@{#9339}
Diffstat (limited to 'webrtc/video_decoder.h')
-rw-r--r--webrtc/video_decoder.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/webrtc/video_decoder.h b/webrtc/video_decoder.h
index d4770e7bcb..da3d982b35 100644
--- a/webrtc/video_decoder.h
+++ b/webrtc/video_decoder.h
@@ -28,7 +28,7 @@ class DecodedImageCallback {
public:
virtual ~DecodedImageCallback() {}
- virtual int32_t Decoded(I420VideoFrame& decodedImage) = 0;
+ virtual int32_t Decoded(VideoFrame& decodedImage) = 0;
virtual int32_t ReceivedDecodedReferenceFrame(const uint64_t pictureId) {
return -1;
}