mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-26 06:54:49 +00:00
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:
parent
334bcd433b
commit
8ca5387b0f
1 changed files with 1 additions and 0 deletions
|
@ -362,6 +362,7 @@ gst_mpeg2enc_sink_query (GstPad * pad, GstObject * parent,
|
||||||
gst_caps_unref (caps);
|
gst_caps_unref (caps);
|
||||||
res = TRUE;
|
res = TRUE;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
res = gst_pad_query_default (pad, parent, query);
|
res = gst_pad_query_default (pad, parent, query);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue