aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/dsputil_template.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-20 14:20:06 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-20 14:25:27 +0100
commit28245fb466d8deb401127e88f24aa82671936aee (patch)
tree801f6dc18556ce5b7cb137a509bcce298103c3bf /libavcodec/dsputil_template.c
parentc62cb1112ffc32492c99aa1e94324fc6a951abe9 (diff)
parent0e02b381b4850bbc5b8e1ce6e17447968a2ae8b5 (diff)
downloadandroid_external_ffmpeg-28245fb466d8deb401127e88f24aa82671936aee.tar.gz
android_external_ffmpeg-28245fb466d8deb401127e88f24aa82671936aee.tar.bz2
android_external_ffmpeg-28245fb466d8deb401127e88f24aa82671936aee.zip
Merge remote-tracking branch 'qatar/master'
* qatar/master: Remove put_no_rnd_pixels_l2 function pointer for w=16 from dsputil. Merged-by: Michael Niedermayer <michaelni@gmx.at>
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 d3bd30adb8..26167d808f 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_pixels16_l2)(uint8_t *dst, const uint8_t *a, const uint8_t *b, int stride, int h){
- FUNC(put_no_rnd_pixels16_l2)(dst, a, b, stride, stride, stride, h);
-}
-
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);
}