diff options
author | Luis de Bethencourt <luis@debethencourt.com> | 2015-08-28 16:13:16 +0100 |
---|---|---|
committer | Luis de Bethencourt <luisbg@osg.samsung.com> | 2015-09-29 13:34:15 +0100 |
commit | c8d4e85f9e88d0e1786a2f5fcb07b2fa785346bf (patch) | |
tree | fce21270104d9ca203319680c140d624b1c28133 | |
parent | 5d0db38df3961a49591481f01b44b58acc85ac7c (diff) | |
download | gstreamer-plugins-bad-c8d4e85f9e88d0e1786a2f5fcb07b2fa785346bf.tar.gz |
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
-rw-r--r-- | gst/videoparsers/gstvc1parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gst/videoparsers/gstvc1parse.c b/gst/videoparsers/gstvc1parse.c index 63de4e901..d7d61f0f0 100644 --- a/gst/videoparsers/gstvc1parse.c +++ b/gst/videoparsers/gstvc1parse.c @@ -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) { |