ADPCM: remove unreachable break statement after return
authorMåns Rullgård <mans@mansr.com>
Wed, 1 Jul 2009 00:55:17 +0000 (00:55 +0000)
committerMåns Rullgård <mans@mansr.com>
Wed, 1 Jul 2009 00:55:17 +0000 (00:55 +0000)
Originally committed as revision 19312 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/adpcm.c

index e670aa9..d8908d3 100644 (file)
@@ -191,7 +191,6 @@ static av_cold int adpcm_encode_init(AVCodecContext *avctx)
         break;
     default:
         return -1;
-        break;
     }
 
     avctx->coded_frame= avcodec_alloc_frame();