video: fix example code in gst_video_frame_map() docs
authorTim-Philipp Müller <tim@centricular.com>
Sat, 2 Apr 2016 14:19:44 +0000 (15:19 +0100)
committerTim-Philipp Müller <tim@centricular.com>
Sat, 2 Apr 2016 14:19:44 +0000 (15:19 +0100)
GST_VIDEO_FRAME_PLANE_PSTRIDE() does not exist.

https://bugzilla.gnome.org/show_bug.cgi?id=764414

gst-libs/gst/video/video-frame.c

index 66e1fa9..cc5073c 100644 (file)
@@ -202,7 +202,7 @@ invalid_size:
  *   if (gst_video_frame_map (&amp;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) {