Commit d2973f9e authored by banan's avatar banan

Fix nellymoser decode_tag return value, patch by Stefano Sabatini

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11018 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 561cf759
......@@ -390,7 +390,7 @@ static int decode_tag(AVCodecContext * avctx,
*data_size += NELLY_SAMPLES*sizeof(int16_t);
}
return blocks*NELLY_SAMPLES*sizeof(int16_t);
return buf_size;
}
static int decode_end(AVCodecContext * avctx) {
......
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