summaryrefslogtreecommitdiff
path: root/apps/plugins/mpegplayer/SOURCES
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2011-02-22 21:44:15 +0000
committerMichael Sevakis <jethead71@rockbox.org>2011-02-22 21:44:15 +0000
commit652463ecc0085c9e04da17631aa1fdb2703eee80 (patch)
treea05cac6777f599f0e8cabc2306e4f3af69428254 /apps/plugins/mpegplayer/SOURCES
parentec6e64ce9011281e6ecbbc0d93b91ce4db2f42dc (diff)
downloadrockbox-652463ecc0085c9e04da17631aa1fdb2703eee80.tar.gz
rockbox-652463ecc0085c9e04da17631aa1fdb2703eee80.zip
mpegplayer: Move libmpeg2 files into their own subdirectory so things are less cluttered.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29381 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/SOURCES')
-rw-r--r--apps/plugins/mpegplayer/SOURCES30
1 files changed, 16 insertions, 14 deletions
diff --git a/apps/plugins/mpegplayer/SOURCES b/apps/plugins/mpegplayer/SOURCES
index cf1e54aff5..3fc079dfbd 100644
--- a/apps/plugins/mpegplayer/SOURCES
+++ b/apps/plugins/mpegplayer/SOURCES
@@ -1,26 +1,28 @@
1alloc.c 1libmpeg2/decode.c
2decode.c 2libmpeg2/header.c
3header.c 3libmpeg2/idct.c
4idct.c 4libmpeg2/motion_comp.c
5motion_comp.c 5libmpeg2/slice.c
6 6
7#ifdef CPU_COLDFIRE 7#ifdef CPU_COLDFIRE
8idct_coldfire.S 8libmpeg2/idct_coldfire.S
9motion_comp_coldfire_c.c 9libmpeg2/motion_comp_coldfire_c.c
10motion_comp_coldfire_s.S 10libmpeg2/motion_comp_coldfire_s.S
11#elif defined CPU_ARM 11#elif defined CPU_ARM
12#if ARM_ARCH >= 6 12#if ARM_ARCH >= 6
13idct_armv6.S 13libmpeg2/idct_armv6.S
14#else 14#else
15idct_arm.S 15libmpeg2/idct_arm.S
16#endif 16#endif
17motion_comp_arm_c.c 17libmpeg2/motion_comp_arm_c.c
18motion_comp_arm_s.S 18libmpeg2/motion_comp_arm_s.S
19#else /* other CPU or SIM */ 19#else /* other CPU or SIM */
20motion_comp_c.c 20libmpeg2/motion_comp_c.c
21#endif /* CPU_* */ 21#endif /* CPU_* */
22 22
23slice.c 23
24
25alloc.c
24video_out_rockbox.c 26video_out_rockbox.c
25video_thread.c 27video_thread.c
26pcm_output.c 28pcm_output.c