projects
/
libav.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
ARM: NEON optimised VP6 edge filter
[libav.git]
/
libavcodec
/
vp56dsp.c
diff --git
a/libavcodec/vp56dsp.c
b/libavcodec/vp56dsp.c
index
f9da3d7
..
9eb9299
100644
(file)
--- 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);
}