Browse Source

Fix 100l incorrect bitmask check.

Originally committed as revision 20197 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.6
Reimar Döffinger 15 years ago
parent
commit
268fcbe2c8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/dca.c

+ 1
- 1
libavcodec/dca.c View File

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


Loading…
Cancel
Save