Commit 58520203 authored by kabi's avatar kabi

* bugfixing call reference


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@5092 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 195c53e7
......@@ -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