* bugfixing call reference

Originally committed as revision 5092 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Zdenek Kabelac 2006-03-01 23:19:04 +00:00
parent 2669777981
commit 289f999dab

View File

@ -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));