Mercurial > libavcodec.hg
changeset 10380:464ea00ac79e libavcodec
Fix 100l incorrect bitmask check.
author | reimar |
---|---|
date | Sat, 10 Oct 2009 08:49:57 +0000 |
parents | d580026275a1 |
children | 9262948fd649 |
files | dca.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/dca.c Sat Oct 10 07:35:31 2009 +0000 +++ b/dca.c Sat Oct 10 08:49:57 2009 +0000 @@ -609,7 +609,7 @@ 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;