Browse Source

aaccoder: Change FFMAX for allzero flag to OR bit operation

Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
tags/n0.8
Young Han Lee Ronald S. Bultje 15 years ago
parent
commit
f578854efc
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/aaccoder.c

+ 1
- 1
libavcodec/aaccoder.c View File

@@ -723,7 +723,7 @@ static void search_for_quantizers_twoloop(AVCodecContext *avctx,
sce->zeroes[w*16+g] = !nz;
if (nz)
minthr = FFMIN(minthr, uplim);
allz = FFMAX(allz, nz);
allz |= nz;
}
}
for (w = 0; w < sce->ics.num_windows; w += sce->ics.group_len[w]) {


Loading…
Cancel
Save