gst/gsttaglist.h: Less tabs, more spaces.

Original commit message from CVS:
* gst/gsttaglist.h:
Less tabs, more spaces.
This commit is contained in:
Tim-Philipp Müller 2006-10-07 18:11:03 +00:00
parent 06260fdc88
commit f8571bd952
2 changed files with 204 additions and 202 deletions

View file

@ -1,3 +1,8 @@
2006-10-07 Tim-Philipp Müller <tim at centricular dot net>
* gst/gsttaglist.h:
Less tabs, more spaces.
2006-10-06 Tim-Philipp Müller <tim at centricular dot net> 2006-10-06 Tim-Philipp Müller <tim at centricular dot net>
* gst/gstinfo.h: * gst/gstinfo.h:

View file

@ -81,9 +81,9 @@ typedef enum {
* Opaque #GstTagList data structure. * Opaque #GstTagList data structure.
*/ */
typedef GstStructure GstTagList; typedef GstStructure GstTagList;
#define GST_TAG_LIST(x) ((GstTagList *) (x)) #define GST_TAG_LIST(x) ((GstTagList *) (x))
#define GST_IS_TAG_LIST(x) (gst_is_tag_list (GST_TAG_LIST (x))) #define GST_IS_TAG_LIST(x) (gst_is_tag_list (GST_TAG_LIST (x)))
#define GST_TYPE_TAG_LIST (gst_tag_list_get_type ()) #define GST_TYPE_TAG_LIST (gst_tag_list_get_type ())
/** /**
* GstTagForeachFunc: * GstTagForeachFunc:
@ -94,9 +94,9 @@ typedef GstStructure GstTagList;
* A function that will be called in gst_tag_list_foreach(). The function may * A function that will be called in gst_tag_list_foreach(). The function may
* not modify the tag list. * not modify the tag list.
*/ */
typedef void (*GstTagForeachFunc) (const GstTagList *list, typedef void (*GstTagForeachFunc) (const GstTagList * list,
const gchar * tag, const gchar * tag,
gpointer user_data); gpointer user_data);
/** /**
* GstTagMergeFunc: * GstTagMergeFunc:
@ -106,176 +106,173 @@ typedef void (*GstTagForeachFunc) (const GstTagList *list,
* A function for merging multiple values of a tag used when registering * A function for merging multiple values of a tag used when registering
* tags. * tags.
*/ */
typedef void (* GstTagMergeFunc) (GValue *dest, const GValue *src); typedef void (* GstTagMergeFunc) (GValue *dest, const GValue *src);
/* initialize tagging system */ /* initialize tagging system */
void _gst_tag_initialize (void); void _gst_tag_initialize (void);
GType gst_tag_list_get_type (void); GType gst_tag_list_get_type (void);
void gst_tag_register (const gchar * name,
GstTagFlag flag,
GType type,
const gchar * nick,
const gchar * blurb,
GstTagMergeFunc func);
void gst_tag_register (const gchar * name,
GstTagFlag flag,
GType type,
const gchar * nick,
const gchar * blurb,
GstTagMergeFunc func);
/* some default merging functions */ /* some default merging functions */
void gst_tag_merge_use_first (GValue * dest, void gst_tag_merge_use_first (GValue * dest, const GValue * src);
const GValue * src); void gst_tag_merge_strings_with_comma (GValue * dest, const GValue * src);
void gst_tag_merge_strings_with_comma (GValue * dest,
const GValue * src);
/* basic tag support */ /* basic tag support */
gboolean gst_tag_exists (const gchar * tag); gboolean gst_tag_exists (const gchar * tag);
GType gst_tag_get_type (const gchar * tag); GType gst_tag_get_type (const gchar * tag);
G_CONST_RETURN gchar * G_CONST_RETURN gchar * gst_tag_get_nick (const gchar * tag);
gst_tag_get_nick (const gchar * tag); G_CONST_RETURN gchar * gst_tag_get_description (const gchar * tag);
G_CONST_RETURN gchar * GstTagFlag gst_tag_get_flag (const gchar * tag);
gst_tag_get_description (const gchar * tag); gboolean gst_tag_is_fixed (const gchar * tag);
GstTagFlag gst_tag_get_flag (const gchar * tag);
gboolean gst_tag_is_fixed (const gchar * tag);
/* tag lists */ /* tag lists */
GstTagList * gst_tag_list_new (void); GstTagList * gst_tag_list_new (void);
gboolean gst_is_tag_list (gconstpointer p); gboolean gst_is_tag_list (gconstpointer p);
GstTagList * gst_tag_list_copy (const GstTagList * list); GstTagList * gst_tag_list_copy (const GstTagList * list);
void gst_tag_list_insert (GstTagList * into, void gst_tag_list_insert (GstTagList * into,
const GstTagList * from, const GstTagList * from,
GstTagMergeMode mode); GstTagMergeMode mode);
GstTagList * gst_tag_list_merge (const GstTagList * list1, GstTagList * gst_tag_list_merge (const GstTagList * list1,
const GstTagList * list2, const GstTagList * list2,
GstTagMergeMode mode); GstTagMergeMode mode);
void gst_tag_list_free (GstTagList * list); void gst_tag_list_free (GstTagList * list);
guint gst_tag_list_get_tag_size (const GstTagList * list, guint gst_tag_list_get_tag_size (const GstTagList * list,
const gchar * tag); const gchar * tag);
void gst_tag_list_add (GstTagList * list, void gst_tag_list_add (GstTagList * list,
GstTagMergeMode mode, GstTagMergeMode mode,
const gchar * tag, const gchar * tag,
...) G_GNUC_NULL_TERMINATED; ...) G_GNUC_NULL_TERMINATED;
void gst_tag_list_add_values (GstTagList * list, void gst_tag_list_add_values (GstTagList * list,
GstTagMergeMode mode, GstTagMergeMode mode,
const gchar * tag, const gchar * tag,
...) G_GNUC_NULL_TERMINATED; ...) G_GNUC_NULL_TERMINATED;
void gst_tag_list_add_valist (GstTagList * list, void gst_tag_list_add_valist (GstTagList * list,
GstTagMergeMode mode, GstTagMergeMode mode,
const gchar * tag, const gchar * tag,
va_list var_args); va_list var_args);
void gst_tag_list_add_valist_values (GstTagList * list, void gst_tag_list_add_valist_values (GstTagList * list,
GstTagMergeMode mode, GstTagMergeMode mode,
const gchar * tag, const gchar * tag,
va_list var_args); va_list var_args);
void gst_tag_list_remove_tag (GstTagList * list, void gst_tag_list_remove_tag (GstTagList * list,
const gchar * tag); const gchar * tag);
void gst_tag_list_foreach (const GstTagList * list, void gst_tag_list_foreach (const GstTagList * list,
GstTagForeachFunc func, GstTagForeachFunc func,
gpointer user_data); gpointer user_data);
G_CONST_RETURN GValue * G_CONST_RETURN GValue *
gst_tag_list_get_value_index (const GstTagList * list, gst_tag_list_get_value_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index); guint index);
gboolean gst_tag_list_copy_value (GValue * dest, gboolean gst_tag_list_copy_value (GValue * dest,
const GstTagList * list, const GstTagList * list,
const gchar * tag); const gchar * tag);
/* simplifications (FIXME: do we want them?) */ /* simplifications (FIXME: do we want them?) */
gboolean gst_tag_list_get_char (const GstTagList * list, gboolean gst_tag_list_get_char (const GstTagList * list,
const gchar * tag, const gchar * tag,
gchar * value); gchar * value);
gboolean gst_tag_list_get_char_index (const GstTagList * list, gboolean gst_tag_list_get_char_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gchar * value); gchar * value);
gboolean gst_tag_list_get_uchar (const GstTagList * list, gboolean gst_tag_list_get_uchar (const GstTagList * list,
const gchar * tag, const gchar * tag,
guchar * value); guchar * value);
gboolean gst_tag_list_get_uchar_index (const GstTagList * list, gboolean gst_tag_list_get_uchar_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
guchar * value); guchar * value);
gboolean gst_tag_list_get_boolean (const GstTagList * list, gboolean gst_tag_list_get_boolean (const GstTagList * list,
const gchar * tag, const gchar * tag,
gboolean * value); gboolean * value);
gboolean gst_tag_list_get_boolean_index (const GstTagList * list, gboolean gst_tag_list_get_boolean_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gboolean * value); gboolean * value);
gboolean gst_tag_list_get_int (const GstTagList * list, gboolean gst_tag_list_get_int (const GstTagList * list,
const gchar * tag, const gchar * tag,
gint * value); gint * value);
gboolean gst_tag_list_get_int_index (const GstTagList * list, gboolean gst_tag_list_get_int_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gint * value); gint * value);
gboolean gst_tag_list_get_uint (const GstTagList * list, gboolean gst_tag_list_get_uint (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint * value); guint * value);
gboolean gst_tag_list_get_uint_index (const GstTagList * list, gboolean gst_tag_list_get_uint_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
guint * value); guint * value);
gboolean gst_tag_list_get_long (const GstTagList * list, gboolean gst_tag_list_get_long (const GstTagList * list,
const gchar * tag, const gchar * tag,
glong * value); glong * value);
gboolean gst_tag_list_get_long_index (const GstTagList * list, gboolean gst_tag_list_get_long_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
glong * value); glong * value);
gboolean gst_tag_list_get_ulong (const GstTagList * list, gboolean gst_tag_list_get_ulong (const GstTagList * list,
const gchar * tag, const gchar * tag,
gulong * value); gulong * value);
gboolean gst_tag_list_get_ulong_index (const GstTagList * list, gboolean gst_tag_list_get_ulong_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gulong * value); gulong * value);
gboolean gst_tag_list_get_int64 (const GstTagList * list, gboolean gst_tag_list_get_int64 (const GstTagList * list,
const gchar * tag, const gchar * tag,
gint64 * value); gint64 * value);
gboolean gst_tag_list_get_int64_index (const GstTagList * list, gboolean gst_tag_list_get_int64_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gint64 * value); gint64 * value);
gboolean gst_tag_list_get_uint64 (const GstTagList * list, gboolean gst_tag_list_get_uint64 (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint64 * value); guint64 * value);
gboolean gst_tag_list_get_uint64_index (const GstTagList * list, gboolean gst_tag_list_get_uint64_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
guint64 * value); guint64 * value);
gboolean gst_tag_list_get_float (const GstTagList * list, gboolean gst_tag_list_get_float (const GstTagList * list,
const gchar * tag, const gchar * tag,
gfloat * value); gfloat * value);
gboolean gst_tag_list_get_float_index (const GstTagList * list, gboolean gst_tag_list_get_float_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gfloat * value); gfloat * value);
gboolean gst_tag_list_get_double (const GstTagList * list, gboolean gst_tag_list_get_double (const GstTagList * list,
const gchar * tag, const gchar * tag,
gdouble * value); gdouble * value);
gboolean gst_tag_list_get_double_index (const GstTagList * list, gboolean gst_tag_list_get_double_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gdouble * value); gdouble * value);
gboolean gst_tag_list_get_string (const GstTagList * list, gboolean gst_tag_list_get_string (const GstTagList * list,
const gchar * tag, const gchar * tag,
gchar ** value); gchar ** value);
gboolean gst_tag_list_get_string_index (const GstTagList * list, gboolean gst_tag_list_get_string_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gchar ** value); gchar ** value);
gboolean gst_tag_list_get_pointer (const GstTagList * list, gboolean gst_tag_list_get_pointer (const GstTagList * list,
const gchar * tag, const gchar * tag,
gpointer * value); gpointer * value);
gboolean gst_tag_list_get_pointer_index (const GstTagList * list, gboolean gst_tag_list_get_pointer_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
gpointer * value); gpointer * value);
gboolean gst_tag_list_get_date (const GstTagList * list, gboolean gst_tag_list_get_date (const GstTagList * list,
const gchar * tag, const gchar * tag,
GDate ** value); GDate ** value);
gboolean gst_tag_list_get_date_index (const GstTagList * list, gboolean gst_tag_list_get_date_index (const GstTagList * list,
const gchar * tag, const gchar * tag,
guint index, guint index,
GDate ** value); GDate ** value);
/* GStreamer core tags */ /* GStreamer core tags */
/** /**
@ -283,37 +280,37 @@ gboolean gst_tag_list_get_date_index (const GstTagList * list,
* *
* commonly used title (string) * commonly used title (string)
*/ */
#define GST_TAG_TITLE "title" #define GST_TAG_TITLE "title"
/** /**
* GST_TAG_ARTIST: * GST_TAG_ARTIST:
* *
* person(s) responsible for the recording (string) * person(s) responsible for the recording (string)
*/ */
#define GST_TAG_ARTIST "artist" #define GST_TAG_ARTIST "artist"
/** /**
* GST_TAG_ALBUM: * GST_TAG_ALBUM:
* *
* album containing this data (string) * album containing this data (string)
*/ */
#define GST_TAG_ALBUM "album" #define GST_TAG_ALBUM "album"
/** /**
* GST_TAG_DATE: * GST_TAG_DATE:
* *
* date the data was created (#GDate structure) * date the data was created (#GDate structure)
*/ */
#define GST_TAG_DATE "date" #define GST_TAG_DATE "date"
/** /**
* GST_TAG_GENRE: * GST_TAG_GENRE:
* *
* genre this data belongs to (string) * genre this data belongs to (string)
*/ */
#define GST_TAG_GENRE "genre" #define GST_TAG_GENRE "genre"
/** /**
* GST_TAG_COMMENT: * GST_TAG_COMMENT:
* *
* free text commenting the data (string) * free text commenting the data (string)
*/ */
#define GST_TAG_COMMENT "comment" #define GST_TAG_COMMENT "comment"
/** /**
* GST_TAG_EXTENDED_COMMENT: * GST_TAG_EXTENDED_COMMENT:
* *
@ -328,181 +325,181 @@ gboolean gst_tag_list_get_date_index (const GstTagList * list,
* *
* Since: 0.10.10 * Since: 0.10.10
*/ */
#define GST_TAG_EXTENDED_COMMENT "extended-comment" #define GST_TAG_EXTENDED_COMMENT "extended-comment"
/** /**
* GST_TAG_TRACK_NUMBER: * GST_TAG_TRACK_NUMBER:
* *
* track number inside a collection (unsigned integer) * track number inside a collection (unsigned integer)
*/ */
#define GST_TAG_TRACK_NUMBER "track-number" #define GST_TAG_TRACK_NUMBER "track-number"
/** /**
* GST_TAG_TRACK_COUNT: * GST_TAG_TRACK_COUNT:
* *
* count of tracks inside collection this track belongs to (unsigned integer) * count of tracks inside collection this track belongs to (unsigned integer)
*/ */
#define GST_TAG_TRACK_COUNT "track-count" #define GST_TAG_TRACK_COUNT "track-count"
/** /**
* GST_TAG_ALBUM_VOLUME_NUMBER: * GST_TAG_ALBUM_VOLUME_NUMBER:
* *
* disc number inside a collection (unsigned integer) * disc number inside a collection (unsigned integer)
*/ */
#define GST_TAG_ALBUM_VOLUME_NUMBER "album-disc-number" #define GST_TAG_ALBUM_VOLUME_NUMBER "album-disc-number"
/** /**
* GST_TAG_ALBUM_VOLUME_COUNT: * GST_TAG_ALBUM_VOLUME_COUNT:
* *
* count of discs inside collection this disc belongs to (unsigned integer) * count of discs inside collection this disc belongs to (unsigned integer)
*/ */
#define GST_TAG_ALBUM_VOLUME_COUNT "album-disc-count" #define GST_TAG_ALBUM_VOLUME_COUNT "album-disc-count"
/** /**
* GST_TAG_LOCATION: * GST_TAG_LOCATION:
* *
* original location of file as a URI (string) * original location of file as a URI (string)
*/ */
#define GST_TAG_LOCATION "location" #define GST_TAG_LOCATION "location"
/** /**
* GST_TAG_DESCRIPTION: * GST_TAG_DESCRIPTION:
* *
* short text describing the content of the data (string) * short text describing the content of the data (string)
*/ */
#define GST_TAG_DESCRIPTION "description" #define GST_TAG_DESCRIPTION "description"
/** /**
* GST_TAG_VERSION: * GST_TAG_VERSION:
* *
* version of this data (string) * version of this data (string)
*/ */
#define GST_TAG_VERSION "version" #define GST_TAG_VERSION "version"
/** /**
* GST_TAG_ISRC: * GST_TAG_ISRC:
* *
* International Standard Recording Code - see http://www.ifpi.org/isrc/ (string) * International Standard Recording Code - see http://www.ifpi.org/isrc/ (string)
*/ */
#define GST_TAG_ISRC "isrc" #define GST_TAG_ISRC "isrc"
/** /**
* GST_TAG_ORGANIZATION: * GST_TAG_ORGANIZATION:
* *
* organization (string) * organization (string)
*/ */
#define GST_TAG_ORGANIZATION "organization" #define GST_TAG_ORGANIZATION "organization"
/** /**
* GST_TAG_COPYRIGHT: * GST_TAG_COPYRIGHT:
* *
* copyright notice of the data (string) * copyright notice of the data (string)
*/ */
#define GST_TAG_COPYRIGHT "copyright" #define GST_TAG_COPYRIGHT "copyright"
/** /**
* GST_TAG_CONTACT: * GST_TAG_CONTACT:
* *
* contact information (string) * contact information (string)
*/ */
#define GST_TAG_CONTACT "contact" #define GST_TAG_CONTACT "contact"
/** /**
* GST_TAG_LICENSE: * GST_TAG_LICENSE:
* *
* license of data (string) * license of data (string)
*/ */
#define GST_TAG_LICENSE "license" #define GST_TAG_LICENSE "license"
/** /**
* GST_TAG_PERFORMER: * GST_TAG_PERFORMER:
* *
* person(s) performing (string) * person(s) performing (string)
*/ */
#define GST_TAG_PERFORMER "performer" #define GST_TAG_PERFORMER "performer"
/** /**
* GST_TAG_DURATION: * GST_TAG_DURATION:
* *
* length in GStreamer time units (nanoseconds) (unsigned 64-bit integer) * length in GStreamer time units (nanoseconds) (unsigned 64-bit integer)
*/ */
#define GST_TAG_DURATION "duration" #define GST_TAG_DURATION "duration"
/** /**
* GST_TAG_CODEC: * GST_TAG_CODEC:
* *
* codec the data is stored in (string) * codec the data is stored in (string)
*/ */
#define GST_TAG_CODEC "codec" #define GST_TAG_CODEC "codec"
/** /**
* GST_TAG_VIDEO_CODEC: * GST_TAG_VIDEO_CODEC:
* *
* codec the video data is stored in (string) * codec the video data is stored in (string)
*/ */
#define GST_TAG_VIDEO_CODEC "video-codec" #define GST_TAG_VIDEO_CODEC "video-codec"
/** /**
* GST_TAG_AUDIO_CODEC: * GST_TAG_AUDIO_CODEC:
* *
* codec the audio data is stored in (string) * codec the audio data is stored in (string)
*/ */
#define GST_TAG_AUDIO_CODEC "audio-codec" #define GST_TAG_AUDIO_CODEC "audio-codec"
/** /**
* GST_TAG_BITRATE: * GST_TAG_BITRATE:
* *
* exact or average bitrate in bits/s (unsigned integer) * exact or average bitrate in bits/s (unsigned integer)
*/ */
#define GST_TAG_BITRATE "bitrate" #define GST_TAG_BITRATE "bitrate"
/** /**
* GST_TAG_NOMINAL_BITRATE: * GST_TAG_NOMINAL_BITRATE:
* *
* nominal bitrate in bits/s (unsigned integer) * nominal bitrate in bits/s (unsigned integer)
*/ */
#define GST_TAG_NOMINAL_BITRATE "nominal-bitrate" #define GST_TAG_NOMINAL_BITRATE "nominal-bitrate"
/** /**
* GST_TAG_MINIMUM_BITRATE: * GST_TAG_MINIMUM_BITRATE:
* *
* minimum bitrate in bits/s (unsigned integer) * minimum bitrate in bits/s (unsigned integer)
*/ */
#define GST_TAG_MINIMUM_BITRATE "minimum-bitrate" #define GST_TAG_MINIMUM_BITRATE "minimum-bitrate"
/** /**
* GST_TAG_MAXIMUM_BITRATE: * GST_TAG_MAXIMUM_BITRATE:
* *
* maximum bitrate in bits/s (unsigned integer) * maximum bitrate in bits/s (unsigned integer)
*/ */
#define GST_TAG_MAXIMUM_BITRATE "maximum-bitrate" #define GST_TAG_MAXIMUM_BITRATE "maximum-bitrate"
/** /**
* GST_TAG_SERIAL: * GST_TAG_SERIAL:
* *
* serial number of track (unsigned integer) * serial number of track (unsigned integer)
*/ */
#define GST_TAG_SERIAL "serial" #define GST_TAG_SERIAL "serial"
/** /**
* GST_TAG_ENCODER: * GST_TAG_ENCODER:
* *
* encoder used to encode this stream (string) * encoder used to encode this stream (string)
*/ */
#define GST_TAG_ENCODER "encoder" #define GST_TAG_ENCODER "encoder"
/** /**
* GST_TAG_ENCODER_VERSION: * GST_TAG_ENCODER_VERSION:
* *
* version of the encoder used to encode this stream (unsigned integer) * version of the encoder used to encode this stream (unsigned integer)
*/ */
#define GST_TAG_ENCODER_VERSION "encoder-version" #define GST_TAG_ENCODER_VERSION "encoder-version"
/** /**
* GST_TAG_TRACK_GAIN: * GST_TAG_TRACK_GAIN:
* *
* track gain in db (double) * track gain in db (double)
*/ */
#define GST_TAG_TRACK_GAIN "replaygain-track-gain" #define GST_TAG_TRACK_GAIN "replaygain-track-gain"
/** /**
* GST_TAG_TRACK_PEAK: * GST_TAG_TRACK_PEAK:
* *
* peak of the track (double) * peak of the track (double)
*/ */
#define GST_TAG_TRACK_PEAK "replaygain-track-peak" #define GST_TAG_TRACK_PEAK "replaygain-track-peak"
/** /**
* GST_TAG_ALBUM_GAIN: * GST_TAG_ALBUM_GAIN:
* *
* album gain in db (double) * album gain in db (double)
*/ */
#define GST_TAG_ALBUM_GAIN "replaygain-album-gain" #define GST_TAG_ALBUM_GAIN "replaygain-album-gain"
/** /**
* GST_TAG_ALBUM_PEAK: * GST_TAG_ALBUM_PEAK:
* *
* peak of the album (double) * peak of the album (double)
*/ */
#define GST_TAG_ALBUM_PEAK "replaygain-album-peak" #define GST_TAG_ALBUM_PEAK "replaygain-album-peak"
/** /**
* GST_TAG_LANGUAGE_CODE: * GST_TAG_LANGUAGE_CODE:
* *
* Language code (ISO-639-1) (string) * Language code (ISO-639-1) (string)
*/ */
#define GST_TAG_LANGUAGE_CODE "language-code" #define GST_TAG_LANGUAGE_CODE "language-code"
/** /**
* GST_TAG_IMAGE: * GST_TAG_IMAGE:
* *
@ -510,7 +507,7 @@ gboolean gst_tag_list_get_date_index (const GstTagList * list,
* *
* Since: 0.10.6 * Since: 0.10.6
*/ */
#define GST_TAG_IMAGE "image" #define GST_TAG_IMAGE "image"
/** /**
* GST_TAG_PREVIEW_IMAGE: * GST_TAG_PREVIEW_IMAGE:
* *
@ -519,7 +516,7 @@ gboolean gst_tag_list_get_date_index (const GstTagList * list,
* *
* Since: 0.10.7 * Since: 0.10.7
*/ */
#define GST_TAG_PREVIEW_IMAGE "preview-image" #define GST_TAG_PREVIEW_IMAGE "preview-image"
G_END_DECLS G_END_DECLS