Commit 289f999d authored by Zdenek Kabelac's avatar Zdenek Kabelac

* bugfixing call reference

Originally committed as revision 5092 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 26697779
......@@ -160,7 +160,7 @@ static int faac_decode_frame(AVCodecContext *avctx,
if(!s->init){
unsigned long srate;
unsigned char channels;
int r = faacDecInit(s->faac_handle, buf, buf_size, &srate, &channels);
int r = s->faacDecInit(s->faac_handle, buf, buf_size, &srate, &channels);
if(r < 0){
av_log(avctx, AV_LOG_ERROR, "faac: codec init failed: %s\n",
s->faacDecGetErrorMessage(frame_info.error));
......
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