diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-08-31 04:42:13 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-08-31 04:42:13 +0000 |
commit | 2d5eadccb5c96b461861ad0a3434863615f80867 (patch) | |
tree | e4b82ab155f4b49e6cb7d339bc123f2d0a87c345 /libavcodec/vc1.c | |
parent | 66ff2c1f52f809b504cf013c7af3b45cc0a82ef5 (diff) | |
download | ffmpeg-2d5eadccb5c96b461861ad0a3434863615f80867.tar.gz |
Spelling
Originally committed as revision 6138 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vc1.c')
-rw-r--r-- | libavcodec/vc1.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/vc1.c b/libavcodec/vc1.c index 789dda9985..8a5cf20b06 100644 --- a/libavcodec/vc1.c +++ b/libavcodec/vc1.c @@ -877,7 +877,7 @@ static void vc1_mc_1mv(VC1Context *v, int dir) } 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); if(!v->rnd){ 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) 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); if(!v->rnd){ dsp->put_qpel_pixels_tab[1][uvdxy](s->dest[1], srcU, s->uvlinesize); |