From 9e311960cdbb4805a6c76cefdf7eebb2802ae8ce Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 2 Apr 2016 15:19:44 +0100 Subject: [PATCH] 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 --- gst-libs/gst/video/video-frame.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.7.4