diff options
author | Måns Rullgård <mans@mansr.com> | 2009-07-01 00:55:17 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2009-07-01 00:55:17 +0000 |
commit | 6816f8b8e4d8e7aa0f14aa915ccfc6a4fd9aae39 (patch) | |
tree | 5e9432a4c8be3985dac9b8e15509c46d88760fe3 /libavcodec/adpcm.c | |
parent | 300ad6c16e55dbdf87ffa9296d67a22a24e1e0fc (diff) | |
download | ffmpeg-6816f8b8e4d8e7aa0f14aa915ccfc6a4fd9aae39.tar.gz |
ADPCM: remove unreachable break statement after return
Originally committed as revision 19312 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/adpcm.c')
-rw-r--r-- | libavcodec/adpcm.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/adpcm.c b/libavcodec/adpcm.c index e670aa94ed..d8908d34d2 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(); |