mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
taglist: remove gst_tag_list_get_*long*()
No one uses this or should ever need to use it, since the size is architecture-specific anyway. If normal integers don't do, one should use 64-bit integers.
This commit is contained in:
parent
160ee2af3d
commit
f19b7d1125
4 changed files with 0 additions and 86 deletions
|
@ -2464,10 +2464,6 @@ gst_tag_list_get_int
|
|||
gst_tag_list_get_int_index
|
||||
gst_tag_list_get_uint
|
||||
gst_tag_list_get_uint_index
|
||||
gst_tag_list_get_long
|
||||
gst_tag_list_get_long_index
|
||||
gst_tag_list_get_ulong
|
||||
gst_tag_list_get_ulong_index
|
||||
gst_tag_list_get_int64
|
||||
gst_tag_list_get_int64_index
|
||||
gst_tag_list_get_uint64
|
||||
|
|
|
@ -1532,70 +1532,6 @@ TAG_MERGE_FUNCS (int, gint, TRUE);
|
|||
* given list.
|
||||
*/
|
||||
TAG_MERGE_FUNCS (uint, guint, TRUE);
|
||||
/**
|
||||
* gst_tag_list_get_long:
|
||||
* @list: a #GstTagList to get the tag from
|
||||
* @tag: tag to read out
|
||||
* @value: (out): location for the result
|
||||
*
|
||||
* Copies the contents for the given tag into the value, merging multiple values
|
||||
* into one if multiple values are associated with the tag.
|
||||
*
|
||||
* Returns: TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
||||
* given list.
|
||||
*/
|
||||
/**
|
||||
* gst_tag_list_get_long_index:
|
||||
* @list: a #GstTagList to get the tag from
|
||||
* @tag: tag to read out
|
||||
* @index: number of entry to read out
|
||||
* @value: (out): location for the result
|
||||
*
|
||||
* Gets the value that is at the given index for the given tag in the given
|
||||
* list.
|
||||
*
|
||||
* Returns: TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
||||
* given list.
|
||||
*/
|
||||
TAG_MERGE_FUNCS (long, glong, TRUE);
|
||||
/**
|
||||
* gst_tag_list_get_ulong:
|
||||
* @list: a #GstTagList to get the tag from
|
||||
* @tag: tag to read out
|
||||
* @value: (out): location for the result
|
||||
*
|
||||
* Copies the contents for the given tag into the value, merging multiple values
|
||||
* into one if multiple values are associated with the tag.
|
||||
*
|
||||
* Returns: TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
||||
* given list.
|
||||
*/
|
||||
/**
|
||||
* gst_tag_list_get_ulong_index:
|
||||
* @list: a #GstTagList to get the tag from
|
||||
* @tag: tag to read out
|
||||
* @index: number of entry to read out
|
||||
* @value: (out): location for the result
|
||||
*
|
||||
* Gets the value that is at the given index for the given tag in the given
|
||||
* list.
|
||||
*
|
||||
* Returns: TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
||||
* given list.
|
||||
*/
|
||||
TAG_MERGE_FUNCS (ulong, gulong, TRUE);
|
||||
/**
|
||||
* gst_tag_list_get_int64:
|
||||
* @list: a #GstTagList to get the tag from
|
||||
* @tag: tag to read out
|
||||
* @value: (out): location for the result
|
||||
*
|
||||
* Copies the contents for the given tag into the value, merging multiple values
|
||||
* into one if multiple values are associated with the tag.
|
||||
*
|
||||
* Returns: TRUE, if a value was copied, FALSE if the tag didn't exist in the
|
||||
* given list.
|
||||
*/
|
||||
/**
|
||||
* gst_tag_list_get_int64_index:
|
||||
* @list: a #GstTagList to get the tag from
|
||||
|
|
|
@ -289,20 +289,6 @@ gboolean gst_tag_list_get_uint_index (const GstTagList * list,
|
|||
const gchar * tag,
|
||||
guint index,
|
||||
guint * value);
|
||||
gboolean gst_tag_list_get_long (const GstTagList * list,
|
||||
const gchar * tag,
|
||||
glong * value);
|
||||
gboolean gst_tag_list_get_long_index (const GstTagList * list,
|
||||
const gchar * tag,
|
||||
guint index,
|
||||
glong * value);
|
||||
gboolean gst_tag_list_get_ulong (const GstTagList * list,
|
||||
const gchar * tag,
|
||||
gulong * value);
|
||||
gboolean gst_tag_list_get_ulong_index (const GstTagList * list,
|
||||
const gchar * tag,
|
||||
guint index,
|
||||
gulong * value);
|
||||
gboolean gst_tag_list_get_int64 (const GstTagList * list,
|
||||
const gchar * tag,
|
||||
gint64 * value);
|
||||
|
|
|
@ -1062,8 +1062,6 @@ EXPORTS
|
|||
gst_tag_list_get_int64
|
||||
gst_tag_list_get_int64_index
|
||||
gst_tag_list_get_int_index
|
||||
gst_tag_list_get_long
|
||||
gst_tag_list_get_long_index
|
||||
gst_tag_list_get_pointer
|
||||
gst_tag_list_get_pointer_index
|
||||
gst_tag_list_get_string
|
||||
|
@ -1076,8 +1074,6 @@ EXPORTS
|
|||
gst_tag_list_get_uint64
|
||||
gst_tag_list_get_uint64_index
|
||||
gst_tag_list_get_uint_index
|
||||
gst_tag_list_get_ulong
|
||||
gst_tag_list_get_ulong_index
|
||||
gst_tag_list_get_value_index
|
||||
gst_tag_list_insert
|
||||
gst_tag_list_is_empty
|
||||
|
|
Loading…
Reference in a new issue