diff dca.c @ 10380:464ea00ac79e libavcodec

Fix 100l incorrect bitmask check.
author reimar
date Sat, 10 Oct 2009 08:49:57 +0000
parents 98816e4d5522
children 212a837ebd27
line wrap: on
line diff
--- a/dca.c	Sat Oct 10 07:35:31 2009 +0000
+++ b/dca.c	Sat Oct 10 08:49:57 2009 +0000
@@ -609,7 +609,7 @@
                 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;