Commit 5b0b5ecf authored by Stefano Sabatini's avatar Stefano Sabatini Committed by Benjamin Larsson

Fix nellymoser decode_tag return value, patch by Stefano Sabatini

Originally committed as revision 11018 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 6b708904
......@@ -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