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:
parent
4829f7835a
commit
45d4345405
4 changed files with 479 additions and 585 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue