mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
Fix missing GPOINTER_TO_INT()'s on case values.
Original commit message from CVS: Fix missing GPOINTER_TO_INT()'s on case values.
This commit is contained in:
parent
e12886ca43
commit
750a06ee55
1 changed files with 8 additions and 8 deletions
|
@ -54,23 +54,23 @@ gst_props_create_entry (GstPropsFactory factory, gint *skipped)
|
||||||
|
|
||||||
tag = factory[i++];
|
tag = factory[i++];
|
||||||
switch (GPOINTER_TO_INT (tag)) {
|
switch (GPOINTER_TO_INT (tag)) {
|
||||||
case GST_PROPS_INT_ID:
|
case GPOINTER_TO_INT(GST_PROPS_INT_ID):
|
||||||
entry->propstype = GST_PROPS_INT_ID_NUM;
|
entry->propstype = GST_PROPS_INT_ID_NUM;
|
||||||
entry->data.int_data = GPOINTER_TO_INT (factory[i++]);
|
entry->data.int_data = GPOINTER_TO_INT (factory[i++]);
|
||||||
break;
|
break;
|
||||||
case GST_PROPS_INT_RANGE_ID:
|
case GPOINTER_TO_INT(GST_PROPS_INT_RANGE_ID):
|
||||||
entry->propstype = GST_PROPS_INT_RANGE_ID_NUM;
|
entry->propstype = GST_PROPS_INT_RANGE_ID_NUM;
|
||||||
entry->data.int_range_data.min = GPOINTER_TO_INT (factory[i++]);
|
entry->data.int_range_data.min = GPOINTER_TO_INT (factory[i++]);
|
||||||
entry->data.int_range_data.max = GPOINTER_TO_INT (factory[i++]);
|
entry->data.int_range_data.max = GPOINTER_TO_INT (factory[i++]);
|
||||||
break;
|
break;
|
||||||
case GST_PROPS_FOURCC_ID:
|
case GPOINTER_TO_INT(GST_PROPS_FOURCC_ID):
|
||||||
entry->propstype = GST_PROPS_FOURCC_ID_NUM;
|
entry->propstype = GST_PROPS_FOURCC_ID_NUM;
|
||||||
entry->data.fourcc_data = GPOINTER_TO_INT (factory[i++]);
|
entry->data.fourcc_data = GPOINTER_TO_INT (factory[i++]);
|
||||||
break;
|
break;
|
||||||
case GST_PROPS_LIST_ID:
|
case GPOINTER_TO_INT(GST_PROPS_LIST_ID):
|
||||||
g_print("gstprops: list not allowed in list\n");
|
g_print("gstprops: list not allowed in list\n");
|
||||||
break;
|
break;
|
||||||
case GST_PROPS_BOOL_ID:
|
case GPOINTER_TO_INT(GST_PROPS_BOOL_ID):
|
||||||
entry->propstype = GST_PROPS_BOOL_ID_NUM;
|
entry->propstype = GST_PROPS_BOOL_ID_NUM;
|
||||||
entry->data.bool_data = GPOINTER_TO_INT (factory[i++]);
|
entry->data.bool_data = GPOINTER_TO_INT (factory[i++]);
|
||||||
break;
|
break;
|
||||||
|
@ -154,7 +154,7 @@ gst_props_register_count (GstPropsFactory factory, guint *counter)
|
||||||
|
|
||||||
tag = factory[i];
|
tag = factory[i];
|
||||||
switch (GPOINTER_TO_INT (tag)) {
|
switch (GPOINTER_TO_INT (tag)) {
|
||||||
case GST_PROPS_LIST_ID:
|
case GPOINTER_TO_INT(GST_PROPS_LIST_ID):
|
||||||
{
|
{
|
||||||
GstPropsEntry *list_entry;
|
GstPropsEntry *list_entry;
|
||||||
|
|
||||||
|
@ -241,13 +241,13 @@ gst_props_new (GstPropsFactoryEntry entry, ...)
|
||||||
value = va_arg (var_args, GstPropsFactoryEntry);
|
value = va_arg (var_args, GstPropsFactoryEntry);
|
||||||
}
|
}
|
||||||
switch (GPOINTER_TO_INT (value)) {
|
switch (GPOINTER_TO_INT (value)) {
|
||||||
case GST_PROPS_END_ID:
|
case GPOINTER_TO_INT(GST_PROPS_END_ID):
|
||||||
g_assert (inlist == TRUE);
|
g_assert (inlist == TRUE);
|
||||||
|
|
||||||
inlist = FALSE;
|
inlist = FALSE;
|
||||||
skip = 0;
|
skip = 0;
|
||||||
break;
|
break;
|
||||||
case GST_PROPS_LIST_ID:
|
case GPOINTER_TO_INT(GST_PROPS_LIST_ID):
|
||||||
{
|
{
|
||||||
g_assert (inlist == FALSE);
|
g_assert (inlist == FALSE);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue