diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 00:02:50 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 05:05:26 +0100 |
commit | 98fed59427cec17ce55ac137e7e250cff7db81cf (patch) | |
tree | 2d4052d9999cb256af76b54d746ee01c2f744150 | |
parent | 48a7981e6f93a27c9caca99d0bfb39e6244606a5 (diff) | |
download | ffmpeg-98fed59427cec17ce55ac137e7e250cff7db81cf.tar.gz |
aacenc: Fix assignments in if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/aacenc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/aacenc.c b/libavcodec/aacenc.c index 2c40ec91f5..348d3a20d2 100644 --- a/libavcodec/aacenc.c +++ b/libavcodec/aacenc.c @@ -517,7 +517,7 @@ static int aac_encode_frame(AVCodecContext *avctx, AVPacket *avpkt, /* add current frame to queue */ if (frame) { - if ((ret = ff_af_queue_add(&s->afq, frame) < 0)) + if ((ret = ff_af_queue_add(&s->afq, frame)) < 0) return ret; } |