Browse Source

avoid 2 additions (1 cpu cycle) per MB

Originally committed as revision 9843 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Michael Niedermayer 18 years ago
parent
commit
7ceab4af35
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavcodec/mpeg12.c

+ 2
- 2
libavcodec/mpeg12.c View File

@@ -1776,8 +1776,8 @@ static int mpeg_decode_slice(Mpeg1Context *s1, int mb_y,
}

s->dest[0] += 16 >> lowres;
s->dest[1] += 16 >> (s->chroma_x_shift + lowres);
s->dest[2] += 16 >> (s->chroma_x_shift + lowres);
s->dest[1] +=(16 >> lowres) >> s->chroma_x_shift;
s->dest[2] +=(16 >> lowres) >> s->chroma_x_shift;

MPV_decode_mb(s, s->block);



Loading…
Cancel
Save