mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
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:
parent
5d0db38df3
commit
c8d4e85f9e
1 changed files with 1 additions and 0 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue