video: Fix 'Since' tags

This commit is contained in:
Edward Hervey 2009-02-19 17:40:45 +01:00
parent c44b067817
commit a490b3f2dd
2 changed files with 8 additions and 2 deletions

View File

@ -227,7 +227,7 @@ error_overflow:
* Extracts whether the caps represents interlaced content or not and places it * Extracts whether the caps represents interlaced content or not and places it
* in @interlaced. * in @interlaced.
* *
* Since: 0.10.22 * Since: 0.10.23
* *
* Returns: TRUE if @caps was parsed correctly. * 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. * 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 * Returns: a new #GstCaps object, or NULL if there was an error
*/ */

View File

@ -235,6 +235,8 @@ typedef enum {
* GST_VIDEO_BUFFER_TFF: * GST_VIDEO_BUFFER_TFF:
* If the @GstBuffer is interlaced, then the first field in the video frame is * If the @GstBuffer is interlaced, then the first field in the video frame is
* the top field. If unset, the bottom field is first. * the top field. If unset, the bottom field is first.
*
* Since: 0.10.23
*/ */
#define GST_VIDEO_BUFFER_TFF GST_BUFFER_FLAG_MEDIA1 #define GST_VIDEO_BUFFER_TFF GST_BUFFER_FLAG_MEDIA1
@ -242,6 +244,8 @@ typedef enum {
* GST_VIDEO_BUFFER_RFF: * GST_VIDEO_BUFFER_RFF:
* If the @GstBuffer is interlaced, then the first field (as defined by the * If the @GstBuffer is interlaced, then the first field (as defined by the
* @GST_VIDEO_BUFFER_TFF flag setting) is repeated. * @GST_VIDEO_BUFFER_TFF flag setting) is repeated.
*
* Since: 0.10.23
*/ */
#define GST_VIDEO_BUFFER_RFF GST_BUFFER_FLAG_MEDIA2 #define GST_VIDEO_BUFFER_RFF GST_BUFFER_FLAG_MEDIA2
@ -249,6 +253,8 @@ typedef enum {
* GST_VIDEO_BUFFER_ONEFIELD: * GST_VIDEO_BUFFER_ONEFIELD:
* If the #GstBuffer is interlaced, the only the first field (as defined by the * If the #GstBuffer is interlaced, the only the first field (as defined by the
* @GST_VIDEO_BUFFER_TFF flag setting) is to be displayed. * @GST_VIDEO_BUFFER_TFF flag setting) is to be displayed.
*
* Since: 0.10.23
*/ */
#define GST_VIDEO_BUFFER_ONEFIELD GST_BUFFER_FLAG_MEDIA3 #define GST_VIDEO_BUFFER_ONEFIELD GST_BUFFER_FLAG_MEDIA3