1
0
Fork 0
forked from len0rd/rockbox

Mpegplayer: Convert the assembler optimised ARM IDCT into a proper assembler file. Clean up the CPU selection in idct.c.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15158 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2007-10-17 00:29:44 +00:00
parent 4829f7835a
commit 45d4345405
4 changed files with 479 additions and 585 deletions

View file

@ -1,22 +1,22 @@
alloc.c
decode.c
header.c
motion_comp.c
#ifdef CPU_ARM
idct_arm_c.c
motion_comp_arm_c.c
motion_comp_arm_s.S
#else /* other CPU or SIM */
idct.c
motion_comp_c.c
#endif /* CPU_* */
motion_comp.c
#ifdef CPU_COLDFIRE
idct_coldfire.S
#elif defined CPU_ARM
idct_arm.S
#endif
#ifdef CPU_ARM
motion_comp_arm_c.c
motion_comp_arm_s.S
#else /* other CPU or SIM */
motion_comp_c.c
#endif /* CPU_* */
slice.c
video_out_rockbox.c
mpeg_settings.c