From ba4b9b22d000e269f595ecce7771bdec007ccdf0 Mon Sep 17 00:00:00 2001 From: Sanjay NM Date: Thu, 18 Sep 2014 16:59:52 +0530 Subject: [PATCH] flv: Removed unreachable break statements https://bugzilla.gnome.org/show_bug.cgi?id=736884 --- gst/flv/gstflvdemux.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/gst/flv/gstflvdemux.c b/gst/flv/gstflvdemux.c index 53833ac..607d554 100644 --- a/gst/flv/gstflvdemux.c +++ b/gst/flv/gstflvdemux.c @@ -1094,7 +1094,6 @@ gst_flv_demux_parse_tag_audio (GstFlvDemux * demux, GstBuffer * buffer) /* Use that buffer data in the caps */ gst_flv_demux_audio_negotiate (demux, codec_tag, rate, channels, width); goto beach; - break; } case 1: /* AAC raw packet */ @@ -1477,7 +1476,6 @@ gst_flv_demux_parse_tag_video (GstFlvDemux * demux, GstBuffer * buffer) /* Use that buffer data in the caps */ gst_flv_demux_video_negotiate (demux, codec_tag); goto beach; - break; } case 1: /* H.264 NALU packet */ -- 2.7.4