diff options
author | Wim Taymans <wim.taymans@gmail.com> | 2002-09-12 20:55:10 +0000 |
---|---|---|
committer | Wim Taymans <wim.taymans@gmail.com> | 2002-09-12 20:55:10 +0000 |
commit | 689fa8a422aa761b6f351200e39b48baf65eb684 (patch) | |
tree | fd8e1f8d8b80b49da4ea3a46ca0a1220a2b14a68 /ext/dv | |
parent | 1868b0e348f4907f78597484ec1e6759b34a6d3b (diff) |
Small cleanup in property handling
Original commit message from CVS:
Small cleanup in property handling
Diffstat (limited to 'ext/dv')
-rw-r--r-- | ext/dv/gstdvdec.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/dv/gstdvdec.c b/ext/dv/gstdvdec.c index 0ee89761..e7b8b258 100644 --- a/ext/dv/gstdvdec.c +++ b/ext/dv/gstdvdec.c @@ -869,6 +869,7 @@ gst_dvdec_change_state (GstElement *element) case GST_STATE_READY_TO_NULL: break; default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } @@ -903,6 +904,7 @@ gst_dvdec_set_property (GObject *object, guint prop_id, const GValue *value, GPa dvdec->quality = g_value_get_flags (value); break; default: + G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec); break; } } |