diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-04-16 02:06:37 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-04-16 02:24:12 +0200 |
commit | f202af29c93f3e9b4103c3c254a8974d7c662315 (patch) | |
tree | 73d2a93f1f8f1d6c4a635d2b957aaef532d0a3c6 | |
parent | 256f530603ef3838a712a4fcd737b46b7bce455e (diff) | |
download | ffmpeg-f202af29c93f3e9b4103c3c254a8974d7c662315.tar.gz |
avcodec/dcadec: fix error message suppression code
Fixes part of Ticket3466
Found-by: Andrey_Karpov / PVS-Studio
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/dcadec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dcadec.c b/libavcodec/dcadec.c index 32eca27c10..e553ccfd30 100644 --- a/libavcodec/dcadec.c +++ b/libavcodec/dcadec.c @@ -1370,7 +1370,7 @@ static int dca_subsubframe(DCAContext *s, int base_channel, int block_index) * Decode VQ encoded high frequencies */ if (s->subband_activity[k] > s->vq_start_subband[k]) { - if (!s->debug_flag & 0x01) { + if (!(s->debug_flag & 0x01)) { av_log(s->avctx, AV_LOG_DEBUG, "Stream with high frequencies VQ coding\n"); s->debug_flag |= 0x01; |