projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b7f2fdd
)
aaccoder: Change FFMAX for allzero flag to OR bit operation
author
Young Han Lee
<cpumaker@gmail.com>
Fri, 11 Mar 2011 02:39:24 +0000
(11:39 +0900)
committer
Ronald S. Bultje
<rsbultje@gmail.com>
Thu, 17 Mar 2011 03:12:43 +0000
(23:12 -0400)
Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com>
libavcodec/aaccoder.c
patch
|
blob
|
history
diff --git
a/libavcodec/aaccoder.c
b/libavcodec/aaccoder.c
index
8063fb6
..
d2c9282
100644
(file)
--- a/
libavcodec/aaccoder.c
+++ b/
libavcodec/aaccoder.c
@@
-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]) {