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
This commit is contained in:
Michael Sevakis 2011-02-22 21:44:15 +00:00
parent ec6e64ce90
commit 652463ecc0
27 changed files with 19 additions and 20 deletions

View file

@ -1,26 +1,28 @@
alloc.c libmpeg2/decode.c
decode.c libmpeg2/header.c
header.c libmpeg2/idct.c
idct.c libmpeg2/motion_comp.c
motion_comp.c libmpeg2/slice.c
#ifdef CPU_COLDFIRE #ifdef CPU_COLDFIRE
idct_coldfire.S libmpeg2/idct_coldfire.S
motion_comp_coldfire_c.c libmpeg2/motion_comp_coldfire_c.c
motion_comp_coldfire_s.S libmpeg2/motion_comp_coldfire_s.S
#elif defined CPU_ARM #elif defined CPU_ARM
#if ARM_ARCH >= 6 #if ARM_ARCH >= 6
idct_armv6.S libmpeg2/idct_armv6.S
#else #else
idct_arm.S libmpeg2/idct_arm.S
#endif #endif
motion_comp_arm_c.c libmpeg2/motion_comp_arm_c.c
motion_comp_arm_s.S libmpeg2/motion_comp_arm_s.S
#else /* other CPU or SIM */ #else /* other CPU or SIM */
motion_comp_c.c libmpeg2/motion_comp_c.c
#endif /* CPU_* */ #endif /* CPU_* */
slice.c
alloc.c
video_out_rockbox.c video_out_rockbox.c
video_thread.c video_thread.c
pcm_output.c pcm_output.c

View file

@ -103,7 +103,6 @@
#include "mpegplayer.h" #include "mpegplayer.h"
#include "lib/helper.h" #include "lib/helper.h"
#include "mpeg_settings.h" #include "mpeg_settings.h"
#include "mpeg2.h"
#include "video_out.h" #include "video_out.h"
#include "stream_thread.h" #include "stream_thread.h"
#include "stream_mgr.h" #include "stream_mgr.h"

View file

@ -23,8 +23,6 @@
#ifndef MPEGPLAYER_H #ifndef MPEGPLAYER_H
#define MPEGPLAYER_H #define MPEGPLAYER_H
#include "mpeg2.h"
#ifdef HAVE_SCHEDULER_BOOSTCTRL #ifdef HAVE_SCHEDULER_BOOSTCTRL
#define trigger_cpu_boost rb->trigger_cpu_boost #define trigger_cpu_boost rb->trigger_cpu_boost
#define cancel_cpu_boost rb->cancel_cpu_boost #define cancel_cpu_boost rb->cancel_cpu_boost
@ -74,7 +72,7 @@
#include "lib/mylcd.h" #include "lib/mylcd.h"
#include "mpeg2.h" #include "libmpeg2/mpeg2.h"
#include "video_out.h" #include "video_out.h"
#include "mpeg_stream.h" #include "mpeg_stream.h"
#include "mpeg_misc.h" #include "mpeg_misc.h"

View file

@ -18,7 +18,7 @@
* KIND, either express or implied. * KIND, either express or implied.
* *
****************************************************************************/ ****************************************************************************/
#include "mpeg2dec_config.h" #include "libmpeg2/mpeg2dec_config.h"
#include "plugin.h" #include "plugin.h"
#include "mpegplayer.h" #include "mpegplayer.h"

View file

@ -22,7 +22,7 @@
****************************************************************************/ ****************************************************************************/
#include "plugin.h" #include "plugin.h"
#include "mpegplayer.h" #include "mpegplayer.h"
#include "mpeg2dec_config.h" #include "libmpeg2/mpeg2dec_config.h"
#include "lib/grey.h" #include "lib/grey.h"
#include "video_out.h" #include "video_out.h"
#include "mpeg_settings.h" #include "mpeg_settings.h"