diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2007-04-14 16:35:44 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2007-04-14 16:35:44 +0000 |
| commit | f4b5a723b06b25babe201b0a97bdeebc716f5bba (patch) | |
| tree | 10a759a0438df774a7b1eab6af0e3995f85ae4d3 /apps/plugins/mpegplayer/SOURCES | |
| parent | 32bd59d4f75f135b26a537f438e0d6b893f1cdfb (diff) | |
| download | rockbox-f4b5a723b06b25babe201b0a97bdeebc716f5bba.zip rockbox-f4b5a723b06b25babe201b0a97bdeebc716f5bba.tar.gz rockbox-f4b5a723b06b25babe201b0a97bdeebc716f5bba.tar.bz2 rockbox-f4b5a723b06b25babe201b0a97bdeebc716f5bba.tar.xz | |
mpeg2dec in mpegplayer: Do a little code slashing and organizing. Much more to come I think.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13159 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/mpegplayer/SOURCES')
| -rw-r--r-- | apps/plugins/mpegplayer/SOURCES | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/apps/plugins/mpegplayer/SOURCES b/apps/plugins/mpegplayer/SOURCES index fc23a2a..e9a01b7 100644 --- a/apps/plugins/mpegplayer/SOURCES +++ b/apps/plugins/mpegplayer/SOURCES @@ -1,14 +1,17 @@ alloc.c -cpu_accel.c -cpu_state.c decode.c header.c idct.c + motion_comp.c + #ifdef CPU_ARM -motion_comp_arm.c +motion_comp_arm_c.c motion_comp_arm_s.S -#endif +#else /* other CPU or SIM */ +motion_comp_c.c +#endif /* CPU_* */ + slice.c video_out_rockbox.c mpeg_settings.c |