summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Otte <otte@gnome.org>2002-03-05 08:13:55 +0000
committerBenjamin Otte <otte@gnome.org>2002-03-05 08:13:55 +0000
commit35aea80ded766b248151bc130dca686ad8bb16f1 (patch)
tree4c751c12ee500672bd5a199f279cb10912865ec5
parenta7ae86114a752afbefd0beeadced64e5185ae140 (diff)
downloadgstreamer-35aea80ded766b248151bc130dca686ad8bb16f1.tar.gz
warning: deprecated use of label at end of compound statement
Original commit message from CVS: warning: deprecated use of label at end of compound statement
-rw-r--r--gst/gstprops.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/gst/gstprops.c b/gst/gstprops.c
index 2a849d7d32..e01db0d442 100644
--- a/gst/gstprops.c
+++ b/gst/gstprops.c
@@ -914,6 +914,7 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
return (entry2->data.int_range_data.min <= entry1->data.int_range_data.min &&
entry2->data.int_range_data.max >= entry1->data.int_range_data.max);
default:
+ break;
}
break;
case GST_PROPS_FLOAT_RANGE_ID:
@@ -923,6 +924,7 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
return (entry2->data.float_range_data.min <= entry1->data.float_range_data.min &&
entry2->data.float_range_data.max >= entry1->data.float_range_data.max);
default:
+ break;
}
break;
case GST_PROPS_FOURCC_ID:
@@ -933,6 +935,7 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
(char*) &entry2->data.fourcc_data, (char*) &entry1->data.fourcc_data);
return (entry2->data.fourcc_data == entry1->data.fourcc_data);
default:
+ break;
}
break;
case GST_PROPS_INT_ID:
@@ -948,6 +951,7 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
GST_DEBUG(GST_CAT_PROPERTIES,"%d == %d ?\n",entry1->data.int_data,entry2->data.int_data);
return (entry2->data.int_data == entry1->data.int_data);
default:
+ break;
}
break;
case GST_PROPS_FLOAT_ID:
@@ -960,6 +964,7 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
case GST_PROPS_FLOAT_ID:
return (entry2->data.float_data == entry1->data.float_data);
default:
+ break;
}
break;
case GST_PROPS_BOOL_ID:
@@ -968,6 +973,7 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
case GST_PROPS_BOOL_ID:
return (entry2->data.bool_data == entry1->data.bool_data);
default:
+ break;
}
case GST_PROPS_STRING_ID:
switch (entry2->propstype) {
@@ -977,8 +983,10 @@ gst_props_entry_check_compatibility (GstPropsEntry *entry1, GstPropsEntry *entry
entry2->data.string_data.string, entry1->data.string_data.string);
return (!strcmp (entry2->data.string_data.string, entry1->data.string_data.string));
default:
+ break;
}
default:
+ break;
}
return FALSE;
@@ -1068,6 +1076,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
entry2 = temp;
}
default:
+ break;
}
switch (entry1->propstype) {
@@ -1142,6 +1151,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
result = gst_props_entry_copy (entry2);
}
default:
+ break;
}
break;
case GST_PROPS_FLOAT_RANGE_ID:
@@ -1174,6 +1184,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
result = gst_props_entry_copy (entry2);
}
default:
+ break;
}
break;
case GST_PROPS_FOURCC_ID:
@@ -1183,6 +1194,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
if (entry1->data.fourcc_data == entry2->data.fourcc_data)
result = gst_props_entry_copy (entry1);
default:
+ break;
}
break;
case GST_PROPS_INT_ID:
@@ -1192,6 +1204,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
if (entry1->data.int_data == entry2->data.int_data)
result = gst_props_entry_copy (entry1);
default:
+ break;
}
break;
case GST_PROPS_FLOAT_ID:
@@ -1201,6 +1214,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
if (entry1->data.float_data == entry2->data.float_data)
result = gst_props_entry_copy (entry1);
default:
+ break;
}
break;
case GST_PROPS_BOOL_ID:
@@ -1210,6 +1224,7 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
if (entry1->data.bool_data == entry2->data.bool_data)
result = gst_props_entry_copy (entry1);
default:
+ break;
}
case GST_PROPS_STRING_ID:
switch (entry2->propstype) {
@@ -1218,8 +1233,10 @@ gst_props_entry_intersect (GstPropsEntry *entry1, GstPropsEntry *entry2)
if (!strcmp (entry1->data.string_data.string, entry2->data.string_data.string))
result = gst_props_entry_copy (entry1);
default:
+ break;
}
default:
+ break;
}
return result;