diff options
author | Måns Rullgård <mans@mansr.com> | 2008-12-15 22:12:32 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-12-15 22:12:32 +0000 |
commit | 569f5a756a7dfc2094006411f6f945a6fd45ddc4 (patch) | |
tree | 1d8efe0823e0b79c2112917d616118d1a6e36324 /libavcodec/armv4l/dsputil_arm.c | |
parent | c4687bf60754e8156ce647519cba8d943e606eda (diff) | |
download | ffmpeg-569f5a756a7dfc2094006411f6f945a6fd45ddc4.tar.gz |
ARM: NEON optimised put_pixels functions
Originally committed as revision 16145 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/armv4l/dsputil_arm.c')
-rw-r--r-- | libavcodec/armv4l/dsputil_arm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/armv4l/dsputil_arm.c b/libavcodec/armv4l/dsputil_arm.c index 990d687256..16eeec8912 100644 --- a/libavcodec/armv4l/dsputil_arm.c +++ b/libavcodec/armv4l/dsputil_arm.c @@ -26,6 +26,7 @@ void dsputil_init_iwmmxt(DSPContext* c, AVCodecContext *avctx); void ff_float_init_arm_vfp(DSPContext* c, AVCodecContext *avctx); +void ff_dsputil_init_neon(DSPContext *c, AVCodecContext *avctx); void j_rev_dct_ARM(DCTELEM *data); void simple_idct_ARM(DCTELEM *data); @@ -197,4 +198,7 @@ void dsputil_init_armv4l(DSPContext* c, AVCodecContext *avctx) #ifdef HAVE_ARMVFP ff_float_init_arm_vfp(c, avctx); #endif +#ifdef HAVE_NEON + ff_dsputil_init_neon(c, avctx); +#endif } |