summaryrefslogtreecommitdiff
path: root/libavcodec/vp3.c
diff options
context:
space:
mode:
authorRonald S. Bultje <rsbultje@gmail.com>2013-01-17 22:02:58 -0800
committerRonald S. Bultje <rsbultje@gmail.com>2013-01-19 22:37:45 -0800
commit0e02b381b4850bbc5b8e1ce6e17447968a2ae8b5 (patch)
tree807a8cdfa5e8c1e1cf50b5837268077d73a6517f /libavcodec/vp3.c
parentfef906c77c09940a2fdad155b2adc05080e17eda (diff)
Remove put_no_rnd_pixels_l2 function pointer for w=16 from dsputil.
The function is never used.
Diffstat (limited to 'libavcodec/vp3.c')
-rw-r--r--libavcodec/vp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/vp3.c b/libavcodec/vp3.c
index 9417535314..58db8908db 100644
--- a/libavcodec/vp3.c
+++ b/libavcodec/vp3.c
@@ -1564,7 +1564,7 @@ static void render_slice(Vp3DecodeContext *s, int slice)
motion_source, stride, 8);
}else{
int d= (motion_x ^ motion_y)>>31; // d is 0 if motion_x and _y have the same sign, else -1
- s->dsp.put_no_rnd_pixels_l2[1](
+ s->dsp.put_no_rnd_pixels_l2(
output_plane + first_pixel,
motion_source - d,
motion_source + stride + 1 + d,