diff options
author | David Conrad <lessen42@gmail.com> | 2009-04-14 23:55:39 +0000 |
---|---|---|
committer | David Conrad <lessen42@gmail.com> | 2009-04-14 23:55:39 +0000 |
commit | c374691b28638763045ae55fc45c39da9bb5b6eb (patch) | |
tree | 7ded8cf25279e28669f546b5b9d68ae063942a7d /libavcodec/dsputil.c | |
parent | 08982bb466293bbbf16407e6fe71f6d31e48d0aa (diff) | |
download | ffmpeg-c374691b28638763045ae55fc45c39da9bb5b6eb.tar.gz |
Rename put_no_rnd_h264_chroma* to reflect its usage in VC1 only
Originally committed as revision 18517 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index e2e13714f2..695b6e35cd 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -1679,7 +1679,7 @@ H264_CHROMA_MC(avg_ , op_avg) #undef op_avg #undef op_put -static void put_no_rnd_h264_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){ +static void put_no_rnd_vc1_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*align 1*/, int stride, int h, int x, int y){ const int A=(8-x)*(8-y); const int B=( x)*(8-y); const int C=(8-x)*( y); @@ -4489,7 +4489,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) c->avg_h264_chroma_pixels_tab[0]= avg_h264_chroma_mc8_c; c->avg_h264_chroma_pixels_tab[1]= avg_h264_chroma_mc4_c; c->avg_h264_chroma_pixels_tab[2]= avg_h264_chroma_mc2_c; - c->put_no_rnd_h264_chroma_pixels_tab[0]= put_no_rnd_h264_chroma_mc8_c; + c->put_no_rnd_vc1_chroma_pixels_tab[0]= put_no_rnd_vc1_chroma_mc8_c; c->weight_h264_pixels_tab[0]= weight_h264_pixels16x16_c; c->weight_h264_pixels_tab[1]= weight_h264_pixels16x8_c; |