Commit f056c8e9 authored by Baptiste Coudurier's avatar Baptiste Coudurier

set frame_size in libfaad decoder

Originally committed as revision 14024 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 74fd9022
......@@ -196,7 +196,8 @@ static int faac_decode_frame(AVCodecContext *avctx,
s->faacDecGetErrorMessage(frame_info.error));
return -1;
}
if (!avctx->frame_size)
avctx->frame_size = frame_info.samples/avctx->channels;
frame_info.samples *= s->sample_size;
memcpy(data, out, frame_info.samples); // CHECKME - can we cheat this one
......
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