From a490b3f2dd47c0c8a20e53876f62085a8b8e93f1 Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 19 Feb 2009 17:40:45 +0100 Subject: [PATCH] video: Fix 'Since' tags --- gst-libs/gst/video/video.c | 4 ++-- gst-libs/gst/video/video.h | 6 ++++++ 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gst-libs/gst/video/video.c b/gst-libs/gst/video/video.c index 09915bb869..7f3fe23435 100644 --- a/gst-libs/gst/video/video.c +++ b/gst-libs/gst/video/video.c @@ -227,7 +227,7 @@ error_overflow: * Extracts whether the caps represents interlaced content or not and places it * in @interlaced. * - * Since: 0.10.22 + * Since: 0.10.23 * * Returns: TRUE if @caps was parsed correctly. */ @@ -423,7 +423,7 @@ gst_video_parse_caps_pixel_aspect_ratio (GstCaps * caps, int *par_n, int *par_d) * * Creates a new #GstCaps object based on the parameters provided. * - * Since: 0.10.22 + * Since: 0.10.23 * * Returns: a new #GstCaps object, or NULL if there was an error */ diff --git a/gst-libs/gst/video/video.h b/gst-libs/gst/video/video.h index 22c4a4bded..e0d2a5444d 100644 --- a/gst-libs/gst/video/video.h +++ b/gst-libs/gst/video/video.h @@ -235,6 +235,8 @@ typedef enum { * GST_VIDEO_BUFFER_TFF: * If the @GstBuffer is interlaced, then the first field in the video frame is * the top field. If unset, the bottom field is first. + * + * Since: 0.10.23 */ #define GST_VIDEO_BUFFER_TFF GST_BUFFER_FLAG_MEDIA1 @@ -242,6 +244,8 @@ typedef enum { * GST_VIDEO_BUFFER_RFF: * If the @GstBuffer is interlaced, then the first field (as defined by the * @GST_VIDEO_BUFFER_TFF flag setting) is repeated. + * + * Since: 0.10.23 */ #define GST_VIDEO_BUFFER_RFF GST_BUFFER_FLAG_MEDIA2 @@ -249,6 +253,8 @@ typedef enum { * GST_VIDEO_BUFFER_ONEFIELD: * If the #GstBuffer is interlaced, the only the first field (as defined by the * @GST_VIDEO_BUFFER_TFF flag setting) is to be displayed. + * + * Since: 0.10.23 */ #define GST_VIDEO_BUFFER_ONEFIELD GST_BUFFER_FLAG_MEDIA3