vc1parse: add break to switch case

Even though all cases inside VC1_STREAM_FORMAT_ASF are goto or
g_assert_not_reached(), add a break at the end to appease Coverity.

CID #1320706
This commit is contained in:
Luis de Bethencourt 2015-08-28 16:13:16 +01:00 committed by Luis de Bethencourt
parent 5d0db38df3
commit c8d4e85f9e

View file

@ -1962,6 +1962,7 @@ gst_vc1_parse_pre_push_frame (GstBaseParse * parse, GstBaseParseFrame * frame)
g_assert_not_reached ();
break;
}
break;
case VC1_STREAM_FORMAT_FRAME_LAYER:
switch (vc1parse->input_stream_format) {