From 6816f8b8e4d8e7aa0f14aa915ccfc6a4fd9aae39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Wed, 1 Jul 2009 00:55:17 +0000 Subject: [PATCH] ADPCM: remove unreachable break statement after return Originally committed as revision 19312 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/adpcm.c | 1 - 1 file changed, 1 deletion(-) diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index e670aa94e..d8908d34d 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(); -- 2.11.0