aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/dsputil_template.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-01-21 11:02:33 -0800
committerRonald S. Bultje <rsbultje@gmail.com>2013-01-21 18:08:55 -0800
commit4a73fbd9c5d5ba6b32a116b296a8cb199f8940ed (patch)
tree52037eaebd840fedbad4a6e3e959d4d0b6fc2551 /libavcodec/dsputil_template.c
parent4f56e773fe8a554b8c2662650aaf799c2ece2721 (diff)
downloadandroid_external_ffmpeg-4a73fbd9c5d5ba6b32a116b296a8cb199f8940ed.tar.gz
android_external_ffmpeg-4a73fbd9c5d5ba6b32a116b296a8cb199f8940ed.tar.bz2
android_external_ffmpeg-4a73fbd9c5d5ba6b32a116b296a8cb199f8940ed.zip
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_template.c')
-rw-r--r--libavcodec/dsputil_template.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/libavcodec/dsputil_template.c b/libavcodec/dsputil_template.c
index b9d5e97bc0..bd5c48b1a8 100644
--- a/libavcodec/dsputil_template.c
+++ b/libavcodec/dsputil_template.c
@@ -582,10 +582,6 @@ PIXOP2(put, op_put)
#define put_no_rnd_pixels8_c put_pixels8_c
#define put_no_rnd_pixels16_c put_pixels16_c
-static void FUNCC(put_no_rnd_pixels8_l2)(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h){
- FUNC(put_no_rnd_pixels8_l2)(dst, a, b, stride, stride, stride, h);
-}
-
#define H264_CHROMA_MC(OPNAME, OP)\
static void FUNCC(OPNAME ## h264_chroma_mc2)(uint8_t *_dst/*align 8*/, uint8_t *_src/*align 1*/, int stride, int h, int x, int y){\
pixel *dst = (pixel*)_dst;\