comparison dca.c @ 10380:464ea00ac79e libavcodec

Fix 100l incorrect bitmask check.
author reimar
date Sat, 10 Oct 2009 08:49:57 +0000
parents 98816e4d5522
children 212a837ebd27
comparison
equal deleted inserted replaced
10379:d580026275a1 10380:464ea00ac79e
607 scale = get_scale(&s->gb, s->joint_huff[j], 0); 607 scale = get_scale(&s->gb, s->joint_huff[j], 0);
608 scale += 64; /* bias */ 608 scale += 64; /* bias */
609 s->joint_scale_factor[j][k] = scale; /*joint_scale_table[scale]; */ 609 s->joint_scale_factor[j][k] = scale; /*joint_scale_table[scale]; */
610 } 610 }
611 611
612 if (!s->debug_flag & 0x02) { 612 if (!(s->debug_flag & 0x02)) {
613 av_log(s->avctx, AV_LOG_DEBUG, 613 av_log(s->avctx, AV_LOG_DEBUG,
614 "Joint stereo coding not supported\n"); 614 "Joint stereo coding not supported\n");
615 s->debug_flag |= 0x02; 615 s->debug_flag |= 0x02;
616 } 616 }
617 } 617 }