uvch264_src: add missing break in caps query handler

There is a missing break statement in switch,
which will result in executing default case as well
resulting in wrong behavior

https://bugzilla.gnome.org/show_bug.cgi?id=751305
This commit is contained in:
Vineeth TM 2015-06-22 11:03:15 +09:00 committed by Tim-Philipp Müller
parent d43a849833
commit dd3f3142bc

View file

@ -3071,6 +3071,7 @@ gst_uvc_h264_src_query (GstPad * pad, GstObject * parent, GstQuery * query)
gst_query_set_caps_result (query,
gst_uvc_h264_src_getcaps (pad, parent, query));
ret = TRUE;
break;
default:
ret = gst_pad_query_default (pad, parent, query);
break;