summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/SOURCES
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-09-25 02:59:42 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-09-25 02:59:42 +0000
commit287d6223d3e4f90043e5fd36cf49d7267b53023d (patch)
tree04771c28f2b826099805f5a5ad98b8c4e41091cc /apps/plugins/mpegplayer/SOURCES
parent24327ddf7ba62c873bd392fa5abe5c341b4a47b9 (diff)
downloadrockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.tar.gz
rockbox-287d6223d3e4f90043e5fd36cf49d7267b53023d.zip
Dithering option for mpegplayer on gigabeat-f/x and e200. Assembly IDCT for ARm just to make it all work more nicely. Move UI simulator YUV code to its core to adapt it.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14851 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/SOURCES')
-rw-r--r--apps/plugins/mpegplayer/SOURCES3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/plugins/mpegplayer/SOURCES b/apps/plugins/mpegplayer/SOURCES
index e9a01b73d0..6629cf7a4c 100644
--- a/apps/plugins/mpegplayer/SOURCES
+++ b/apps/plugins/mpegplayer/SOURCES
@@ -1,14 +1,15 @@
1alloc.c 1alloc.c
2decode.c 2decode.c
3header.c 3header.c
4idct.c
5 4
6motion_comp.c 5motion_comp.c
7 6
8#ifdef CPU_ARM 7#ifdef CPU_ARM
8idct_arm_c.c
9motion_comp_arm_c.c 9motion_comp_arm_c.c
10motion_comp_arm_s.S 10motion_comp_arm_s.S
11#else /* other CPU or SIM */ 11#else /* other CPU or SIM */
12idct.c
12motion_comp_c.c 13motion_comp_c.c
13#endif /* CPU_* */ 14#endif /* CPU_* */
14 15