Commit be682ac3 authored by reimar's avatar reimar

Fix 100l incorrect bitmask check.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@20197 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9d5de747
...@@ -609,7 +609,7 @@ static int dca_subframe_header(DCAContext * s) ...@@ -609,7 +609,7 @@ static int dca_subframe_header(DCAContext * s)
s->joint_scale_factor[j][k] = scale; /*joint_scale_table[scale]; */ 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, av_log(s->avctx, AV_LOG_DEBUG,
"Joint stereo coding not supported\n"); "Joint stereo coding not supported\n");
s->debug_flag |= 0x02; 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