Commit 268fcbe2 authored by Reimar Döffinger's avatar Reimar Döffinger

Fix 100l incorrect bitmask check.

Originally committed as revision 20197 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 9e553f7a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment