Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2010-05-01 01:30:27 +0400
committerMåns Rullgård <mans@mansr.com>2010-05-01 01:30:27 +0400
commit5635985c26a5006f09f67f322b84c29c1897f190 (patch)
tree76499355ebcd3594e42ee2887021b77bdf133fd1 /libavcodec/vp56dsp.c
parent5e1ba34bbba7b50c45ef0d10350fe01a3cf63290 (diff)
ARM: NEON optimised VP6 edge filter
Originally committed as revision 22993 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/vp56dsp.c')
-rw-r--r--libavcodec/vp56dsp.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/vp56dsp.c b/libavcodec/vp56dsp.c
index f9da3d78dd..9eb9299a36 100644
--- a/libavcodec/vp56dsp.c
+++ b/libavcodec/vp56dsp.c
@@ -83,4 +83,6 @@ void ff_vp56dsp_init(VP56DSPContext *s, enum CodecID codec)
s->edge_filter_hor = vp6_edge_filter_hor;
s->edge_filter_ver = vp6_edge_filter_ver;
}
+
+ if (ARCH_ARM) ff_vp56dsp_init_arm(s, codec);
}