Commit 2d5eadcc authored by Kostya Shishkov's avatar Kostya Shishkov

Spelling

Originally committed as revision 6138 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 66ff2c1f
...@@ -877,7 +877,7 @@ static void vc1_mc_1mv(VC1Context *v, int dir) ...@@ -877,7 +877,7 @@ static void vc1_mc_1mv(VC1Context *v, int dir)
} }
if(s->flags & CODEC_FLAG_GRAY) return; if(s->flags & CODEC_FLAG_GRAY) return;
/* Chroma MC always uses qpel blilinear */ /* Chroma MC always uses qpel bilinear */
uvdxy = ((uvmy & 3) << 2) | (uvmx & 3); uvdxy = ((uvmy & 3) << 2) | (uvmx & 3);
if(!v->rnd){ if(!v->rnd){
dsp->put_qpel_pixels_tab[1][uvdxy](s->dest[1], srcU, s->uvlinesize); dsp->put_qpel_pixels_tab[1][uvdxy](s->dest[1], srcU, s->uvlinesize);
...@@ -1080,7 +1080,7 @@ static void vc1_mc_4mv_chroma(VC1Context *v) ...@@ -1080,7 +1080,7 @@ static void vc1_mc_4mv_chroma(VC1Context *v)
uvmy = uvmy + ((uvmy<0)?(uvmy&1):-(uvmy&1)); uvmy = uvmy + ((uvmy<0)?(uvmy&1):-(uvmy&1));
} }
/* Chroma MC always uses qpel blilinear */ /* Chroma MC always uses qpel bilinear */
uvdxy = ((uvmy & 3) << 2) | (uvmx & 3); uvdxy = ((uvmy & 3) << 2) | (uvmx & 3);
if(!v->rnd){ if(!v->rnd){
dsp->put_qpel_pixels_tab[1][uvdxy](s->dest[1], srcU, s->uvlinesize); dsp->put_qpel_pixels_tab[1][uvdxy](s->dest[1], srcU, s->uvlinesize);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment