From: Måns Rullgård Date: Wed, 1 Jul 2009 00:55:17 +0000 (+0000) Subject: ADPCM: remove unreachable break statement after return X-Git-Tag: v0.6~3932 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6816f8b8e4d8e7aa0f14aa915ccfc6a4fd9aae39;p=platform%2Fupstream%2Flibav.git ADPCM: remove unreachable break statement after return Originally committed as revision 19312 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index e670aa9..d8908d3 100644 --- a/libavcodec/adpcm.c +++ b/libavcodec/adpcm.c @@ -191,7 +191,6 @@ static av_cold int adpcm_encode_init(AVCodecContext *avctx) break; default: return -1; - break; } avctx->coded_frame= avcodec_alloc_frame();