mirror of
https://github.com/nyanmisaka/ffmpeg-rockchip.git
synced 2026-01-24 02:20:56 +01:00
Skip unnecessary calculations in 4col-mode.
Originally committed as revision 25347 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
90a3ffe276
commit
bbc26bae11
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ static void render_charset(AVCodecContext *avctx, uint8_t *charset,
|
|||
if(INTERLACED) charset[y+0x800] = row2;
|
||||
}
|
||||
/* do we need to adjust pixels? */
|
||||
if (highdiff > 0 && lowdiff > 0) {
|
||||
if (highdiff > 0 && lowdiff > 0 && c->mc_use_5col) {
|
||||
if (lowdiff > highdiff) {
|
||||
for (x = 0; x < 32; x++)
|
||||
best_cb[x] = FFMIN(c->mc_luma_vals[3], best_cb[x]);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue