mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 12:41:05 +00:00
fix some Werror stuff
Original commit message from CVS: fix some Werror stuff
This commit is contained in:
parent
dc7885026e
commit
cf4e552e1d
2 changed files with 8 additions and 6 deletions
|
@ -446,7 +446,7 @@ typedef struct
|
||||||
GstTagCopyData;
|
GstTagCopyData;
|
||||||
static void
|
static void
|
||||||
gst_tag_list_add_value_internal (GstStructure * list, GstTagMergeMode mode,
|
gst_tag_list_add_value_internal (GstStructure * list, GstTagMergeMode mode,
|
||||||
GQuark tag, GValue * value)
|
GQuark tag, const GValue * value)
|
||||||
{
|
{
|
||||||
GstTagInfo *info = gst_tag_lookup (tag);
|
GstTagInfo *info = gst_tag_lookup (tag);
|
||||||
const GValue *value2;
|
const GValue *value2;
|
||||||
|
@ -500,7 +500,7 @@ gst_tag_list_add_value_internal (GstStructure * list, GstTagMergeMode mode,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_tag_list_copy_foreach (GQuark tag, GValue * value, gpointer user_data)
|
gst_tag_list_copy_foreach (GQuark tag, const GValue * value, gpointer user_data)
|
||||||
{
|
{
|
||||||
GstTagCopyData *copy = (GstTagCopyData *) user_data;
|
GstTagCopyData *copy = (GstTagCopyData *) user_data;
|
||||||
|
|
||||||
|
@ -770,7 +770,8 @@ typedef struct
|
||||||
}
|
}
|
||||||
TagForeachData;
|
TagForeachData;
|
||||||
static int
|
static int
|
||||||
structure_foreach_wrapper (GQuark field_id, GValue * value, gpointer user_data)
|
structure_foreach_wrapper (GQuark field_id, const GValue * value,
|
||||||
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
TagForeachData *data = (TagForeachData *) user_data;
|
TagForeachData *data = (TagForeachData *) user_data;
|
||||||
|
|
||||||
|
|
|
@ -446,7 +446,7 @@ typedef struct
|
||||||
GstTagCopyData;
|
GstTagCopyData;
|
||||||
static void
|
static void
|
||||||
gst_tag_list_add_value_internal (GstStructure * list, GstTagMergeMode mode,
|
gst_tag_list_add_value_internal (GstStructure * list, GstTagMergeMode mode,
|
||||||
GQuark tag, GValue * value)
|
GQuark tag, const GValue * value)
|
||||||
{
|
{
|
||||||
GstTagInfo *info = gst_tag_lookup (tag);
|
GstTagInfo *info = gst_tag_lookup (tag);
|
||||||
const GValue *value2;
|
const GValue *value2;
|
||||||
|
@ -500,7 +500,7 @@ gst_tag_list_add_value_internal (GstStructure * list, GstTagMergeMode mode,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static gboolean
|
static gboolean
|
||||||
gst_tag_list_copy_foreach (GQuark tag, GValue * value, gpointer user_data)
|
gst_tag_list_copy_foreach (GQuark tag, const GValue * value, gpointer user_data)
|
||||||
{
|
{
|
||||||
GstTagCopyData *copy = (GstTagCopyData *) user_data;
|
GstTagCopyData *copy = (GstTagCopyData *) user_data;
|
||||||
|
|
||||||
|
@ -770,7 +770,8 @@ typedef struct
|
||||||
}
|
}
|
||||||
TagForeachData;
|
TagForeachData;
|
||||||
static int
|
static int
|
||||||
structure_foreach_wrapper (GQuark field_id, GValue * value, gpointer user_data)
|
structure_foreach_wrapper (GQuark field_id, const GValue * value,
|
||||||
|
gpointer user_data)
|
||||||
{
|
{
|
||||||
TagForeachData *data = (TagForeachData *) user_data;
|
TagForeachData *data = (TagForeachData *) user_data;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue