Commit f076872f authored by mru's avatar mru

ADPCM: remove unreachable break statement after return

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@19312 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 50115f72
...@@ -191,7 +191,6 @@ static av_cold int adpcm_encode_init(AVCodecContext *avctx) ...@@ -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();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment