Commit bdfa9dcc authored by diego's avatar diego

Mark adx_decode_init() as type int instead of void, the function returns

a value.  Fixes the warning:
adxdec.c:36: warning: 'return' with a value, in function returning void


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14814 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 20e820e5
......@@ -30,7 +30,7 @@
* adx2wav & wav2adx http://www.geocities.co.jp/Playtown/2004/
*/
static av_cold void adx_decode_init(AVCodecContext *avctx)
static av_cold int adx_decode_init(AVCodecContext *avctx)
{
avctx->sample_fmt = SAMPLE_FMT_S16;
return 0;
......
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