diff options
author | Måns Rullgård <mans@mansr.com> | 2008-12-17 00:54:54 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-12-17 00:54:54 +0000 |
commit | a2fc0f6a6ddf884ace3c96a0d4f09f0932e6db32 (patch) | |
tree | 44b807b924e29465a6aed924fcb53c719a83a956 /libavcodec/dsputil.c | |
parent | 2600f8c86dcaa411a0485b1518e5e1592374aaf6 (diff) | |
download | ffmpeg-a2fc0f6a6ddf884ace3c96a0d4f09f0932e6db32.tar.gz |
ARM: replace "armv4l" with "arm"
Originally committed as revision 16179 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/dsputil.c')
-rw-r--r-- | libavcodec/dsputil.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/dsputil.c b/libavcodec/dsputil.c index a97fb1e2cd..386d54a4d5 100644 --- a/libavcodec/dsputil.c +++ b/libavcodec/dsputil.c @@ -4554,7 +4554,7 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx) memset(c->avg_2tap_qpel_pixels_tab, 0, sizeof(c->avg_2tap_qpel_pixels_tab)); if (ENABLE_MMX) dsputil_init_mmx (c, avctx); - if (ENABLE_ARMV4L) dsputil_init_armv4l(c, avctx); + if (ENABLE_ARM) dsputil_init_arm (c, avctx); if (ENABLE_MLIB) dsputil_init_mlib (c, avctx); if (ENABLE_VIS) dsputil_init_vis (c, avctx); if (ENABLE_ALPHA) dsputil_init_alpha (c, avctx); |