changeset 4340:268811f3f1ef libavcodec

Optimization of 'dct_unquantize_h263_intra' for ARM (armv5te) patch by Siarhei Siamashka % siarhei P siamashka A gmail P com % Original thread: Date: Jan 6, 2007 5:07 PM Subject: [Ffmpeg-devel] [PATCH] Optimization of 'dct_unquantize_h263_intra' for ARM (armv5te) (try2) and Date: Jan 2, 2007 6:13 PM Subject: [Ffmpeg-devel] [PATCH] Optimization of 'dct_unquantize_h263_intra' for ARM (armv5te)
author gpoirier
date Sun, 07 Jan 2007 23:24:14 +0000
parents fa7fd2988829
children 5053e6b3ea45
files Makefile armv4l/mpegvideo_arm.c
diffstat 2 files changed, 4 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Sun Jan 07 18:04:11 2007 +0000
+++ b/Makefile	Sun Jan 07 23:24:14 2007 +0000
@@ -351,6 +351,7 @@
                                           armv4l/mpegvideo_iwmmxt.o \
 
 ASM_OBJS-$(TARGET_ARMV5TE)             += armv4l/simple_idct_armv5te.o \
+                                          armv4l/mpegvideo_armv5te.o \
 
 # sun sparc
 OBJS-$(TARGET_ARCH_SPARC)              += sparc/dsputil_vis.o \
--- a/armv4l/mpegvideo_arm.c	Sun Jan 07 18:04:11 2007 +0000
+++ b/armv4l/mpegvideo_arm.c	Sun Jan 07 23:24:14 2007 +0000
@@ -24,10 +24,13 @@
 #include "../avcodec.h"
 
 extern void MPV_common_init_iwmmxt(MpegEncContext *s);
+extern void MPV_common_init_armv5te(MpegEncContext *s);
 
 void MPV_common_init_armv4l(MpegEncContext *s)
 {
 #ifdef HAVE_IWMMXT
     MPV_common_init_iwmmxt(s);
+#elif defined(HAVE_ARMV5TE)
+    MPV_common_init_armv5te(s);
 #endif
 }