[FFmpeg-cvslog] r20197 - trunk/libavcodec/dca.c

reimar subversion
Sat Oct 10 10:49:58 CEST 2009


Author: reimar
Date: Sat Oct 10 10:49:57 2009
New Revision: 20197

Log:
Fix 100l incorrect bitmask check.

Modified:
   trunk/libavcodec/dca.c

Modified: trunk/libavcodec/dca.c
==============================================================================
--- trunk/libavcodec/dca.c	Sat Oct 10 09:35:31 2009	(r20196)
+++ trunk/libavcodec/dca.c	Sat Oct 10 10:49:57 2009	(r20197)
@@ -609,7 +609,7 @@ static int dca_subframe_header(DCAContex
                 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;



More information about the ffmpeg-cvslog mailing list