1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-08-04 10:19:58 +02:00

ADPCM: remove unreachable break statement after return

Originally committed as revision 19312 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2009-07-01 00:55:17 +00:00
parent 300ad6c16e
commit 6816f8b8e4

View File

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