diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-21 11:02:33 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-21 18:08:55 -0800 |
commit | 4a73fbd9c5d5ba6b32a116b296a8cb199f8940ed (patch) | |
tree | 52037eaebd840fedbad4a6e3e959d4d0b6fc2551 /libavcodec/dsputil.c | |
parent | 4f56e773fe8a554b8c2662650aaf799c2ece2721 (diff) | |
download | ffmpeg-4a73fbd9c5d5ba6b32a116b296a8cb199f8940ed.tar.gz |
vp3/5: move put_no_rnd_pixels_l2 from dsputil to VP3DSPContext.
The function is only used in VP3 and VP5, so no need to have it in
DSPContext.
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 251fb0c2d9..ea40d2e8ed 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2765,7 +2765,6 @@ av_cold void ff_dsputil_init(DSPContext* c, AVCodecContext *avctx) c->clear_blocks = FUNCC(clear_blocks ## dct , depth);\ c->add_pixels8 = FUNCC(add_pixels8 ## dct , depth);\ c->add_pixels4 = FUNCC(add_pixels4 ## dct , depth);\ - c->put_no_rnd_pixels_l2 = FUNCC(put_no_rnd_pixels8_l2 , depth);\ \ c->put_h264_chroma_pixels_tab[0] = FUNCC(put_h264_chroma_mc8 , depth);\ c->put_h264_chroma_pixels_tab[1] = FUNCC(put_h264_chroma_mc4 , depth);\ |