diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-10-10 08:49:57 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-10-10 08:49:57 +0000 |
commit | 268fcbe2c84581c89f6c995be3269b1f66b07023 (patch) | |
tree | 6b023c3bfe7984e4147d99962df1e7d9d8bee039 /libavcodec/dca.c | |
parent | 9e553f7acc2f378389a37af214ba5f1a4d99365f (diff) | |
download | ffmpeg-268fcbe2c84581c89f6c995be3269b1f66b07023.tar.gz |
Fix 100l incorrect bitmask check.
Originally committed as revision 20197 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dca.c')
-rw-r--r-- | libavcodec/dca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dca.c b/libavcodec/dca.c index e411c3695d..f1a5ab4344 100644 --- a/libavcodec/dca.c +++ b/libavcodec/dca.c @@ -609,7 +609,7 @@ static int dca_subframe_header(DCAContext * s) s->joint_scale_factor[j][k] = scale; /*joint_scale_table[scale]; */ } - if (!s->debug_flag & 0x02) { + if (!(s->debug_flag & 0x02)) { av_log(s->avctx, AV_LOG_DEBUG, "Joint stereo coding not supported\n"); s->debug_flag |= 0x02; |