diff options
author | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-17 22:02:58 -0800 |
---|---|---|
committer | Ronald S. Bultje <rsbultje@gmail.com> | 2013-01-19 22:37:45 -0800 |
commit | 0e02b381b4850bbc5b8e1ce6e17447968a2ae8b5 (patch) | |
tree | 807a8cdfa5e8c1e1cf50b5837268077d73a6517f /libavcodec/dsputil.c | |
parent | fef906c77c09940a2fdad155b2adc05080e17eda (diff) | |
download | ffmpeg-0e02b381b4850bbc5b8e1ce6e17447968a2ae8b5.tar.gz |
Remove put_no_rnd_pixels_l2 function pointer for w=16 from dsputil.
The function is never used.
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index b747e0a629..8e9c98d0d8 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2872,8 +2872,7 @@ 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[0] = FUNCC(put_no_rnd_pixels16_l2, depth);\ - c->put_no_rnd_pixels_l2[1] = FUNCC(put_no_rnd_pixels8_l2 , 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);\ |