From: Tim-Philipp Müller Date: Sat, 2 Apr 2016 14:19:44 +0000 (+0100) Subject: video: fix example code in gst_video_frame_map() docs X-Git-Tag: 1.19.3~511^2~2912 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9e311960cdbb4805a6c76cefdf7eebb2802ae8ce;p=platform%2Fupstream%2Fgstreamer.git video: fix example code in gst_video_frame_map() docs GST_VIDEO_FRAME_PLANE_PSTRIDE() does not exist. https://bugzilla.gnome.org/show_bug.cgi?id=764414 --- diff --git a/gst-libs/gst/video/video-frame.c b/gst-libs/gst/video/video-frame.c index 66e1fa9..cc5073c 100644 --- a/gst-libs/gst/video/video-frame.c +++ b/gst-libs/gst/video/video-frame.c @@ -202,7 +202,7 @@ invalid_size: * if (gst_video_frame_map (&vframe, video_info, video_buffer)) { * guint8 *pixels = GST_VIDEO_FRAME_PLANE_DATA (vframe, 0); * guint stride = GST_VIDEO_FRAME_PLANE_STRIDE (vframe, 0); - * guint pixel_stride = GST_VIDEO_FRAME_PLANE_PSTRIDE (vframe, 0); + * guint pixel_stride = GST_VIDEO_FRAME_COMP_PSTRIDE (vframe, 0); * * for (h = 0; h < height; ++h) { * for (w = 0; w < width; ++w) {