diff options
author | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-09-02 04:58:51 +0000 |
---|---|---|
committer | Kostya Shishkov <kostya.shishkov@gmail.com> | 2006-09-02 04:58:51 +0000 |
commit | 6243da0d5036712ad2f53fcdec0ba6c2ada97d7a (patch) | |
tree | 5a5553ae235d98116bc582f7fedd3717d36763b1 /libavcodec/dsputil.c | |
parent | b0c8e1b80a308d71fed64eeb9c46d411dfcecd68 (diff) | |
download | ffmpeg-6243da0d5036712ad2f53fcdec0ba6c2ada97d7a.tar.gz |
Drop put_vc1_qpel_pixels_tab as they won't be needed anymore.
Originally committed as revision 6152 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index 44bad803d5..80361e8f9f 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -2622,10 +2622,6 @@ void ff_vc1dsp_init(DSPContext* c, AVCodecContext *avctx); void ff_put_vc1_mspel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { put_pixels8_c(dst, src, stride, 8); } - -void ff_put_vc1_qpel_mc00_c(uint8_t *dst, uint8_t *src, int stride, int rnd) { - put_pixels8_c(dst, src, stride, 8); -} #endif /* CONFIG_VC1_DECODER||CONFIG_WMV3_DECODER */ static void wmv2_mspel8_v_lowpass(uint8_t *dst, uint8_t *src, int dstStride, int srcStride, int w){ |