# HG changeset patch # User reimar # Date 1255164597 0 # Node ID 464ea00ac79e00c14bd01b720c2c208a96c32f04 # Parent d580026275a1601f8486e745ca146daf67d3fe2e Fix 100l incorrect bitmask check. diff -r d580026275a1 -r 464ea00ac79e dca.c --- 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;