1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-07-26 22:16:21 +02:00

Fix 100l incorrect bitmask check.

Originally committed as revision 20197 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Reimar Döffinger 2009-10-10 08:49:57 +00:00
parent 9e553f7acc
commit 268fcbe2c8

View File

@ -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;