summaryrefslogtreecommitdiff
path: root/common_video/i420_video_frame.cc
diff options
context:
space:
mode:
authorwu@webrtc.org <wu@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-08-05 20:36:57 +0000
committerwu@webrtc.org <wu@webrtc.org@4adac7df-926f-26a2-2b94-8c16560cd09d>2013-08-05 20:36:57 +0000
commitea7b33ee032bd2d1528384e26ba079dee0d280fb (patch)
treeadb56dc1448d240a6a21327b5d261bd7b3afd783 /common_video/i420_video_frame.cc
parent59787128c61a472532d37e48a82e5e02ecb2f3be (diff)
downloadwebrtc-ea7b33ee032bd2d1528384e26ba079dee0d280fb.tar.gz
* Update libjingle to 50389769.
* Together with "Add texture support for i420 video frame." from wuchengli@chromium.org. https://webrtc-codereview.appspot.com/1413004 RISK=P1 TESTED=try bots R=fischman@webrtc.org Review URL: https://webrtc-codereview.appspot.com/1967004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@4489 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_video/i420_video_frame.cc')
-rw-r--r--common_video/i420_video_frame.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/common_video/i420_video_frame.cc b/common_video/i420_video_frame.cc
index 77b76486..e369ffe1 100644
--- a/common_video/i420_video_frame.cc
+++ b/common_video/i420_video_frame.cc
@@ -142,6 +142,8 @@ void I420VideoFrame::ResetSize() {
v_plane_.ResetSize();
}
+void* I420VideoFrame::native_handle() const { return NULL; }
+
int I420VideoFrame::CheckDimensions(int width, int height,
int stride_y, int stride_u, int stride_v) {
int half_width = (width + 1) / 2;
@@ -179,5 +181,4 @@ Plane* I420VideoFrame::GetPlane(PlaneType type) {
return NULL;
}
-
} // namespace webrtc