mpeg2enc: Add missing break in switch

QUERY_CAPS is fully handled, we don't need to passthrough to the default
handler.

CID #1139756
This commit is contained in:
Edward Hervey 2014-04-08 11:20:29 +02:00
parent 334bcd433b
commit 8ca5387b0f

View file

@ -362,6 +362,7 @@ gst_mpeg2enc_sink_query (GstPad * pad, GstObject * parent,
gst_caps_unref (caps);
res = TRUE;
}
break;
default:
res = gst_pad_query_default (pad, parent, query);
break;