Browse Source

libvo-aacenc: Fix assignments in if()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n1.2
Michael Niedermayer 12 years ago
parent
commit
0ccb31dcad
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libvo-aacenc.c

+ 1
- 1
libavcodec/libvo-aacenc.c View File

@@ -157,7 +157,7 @@ static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt,
samples = (VO_PBYTE)frame->data[0];
}
/* add current frame to the queue */
if ((ret = ff_af_queue_add(&s->afq, frame) < 0))
if ((ret = ff_af_queue_add(&s->afq, frame)) < 0)
return ret;
}



Loading…
Cancel
Save