From c8d4e85f9e88d0e1786a2f5fcb07b2fa785346bf Mon Sep 17 00:00:00 2001 From: Luis de Bethencourt Date: Fri, 28 Aug 2015 16:13:16 +0100 Subject: [PATCH] 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 --- gst/videoparsers/gstvc1parse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gst/videoparsers/gstvc1parse.c b/gst/videoparsers/gstvc1parse.c index 63de4e9010..d7d61f0f00 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) {