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:
parent
ec6e64ce90
commit
652463ecc0
27 changed files with 19 additions and 20 deletions
|
@ -1,26 +1,28 @@
|
|||
alloc.c
|
||||
decode.c
|
||||
header.c
|
||||
idct.c
|
||||
motion_comp.c
|
||||
libmpeg2/decode.c
|
||||
libmpeg2/header.c
|
||||
libmpeg2/idct.c
|
||||
libmpeg2/motion_comp.c
|
||||
libmpeg2/slice.c
|
||||
|
||||
#ifdef CPU_COLDFIRE
|
||||
idct_coldfire.S
|
||||
motion_comp_coldfire_c.c
|
||||
motion_comp_coldfire_s.S
|
||||
libmpeg2/idct_coldfire.S
|
||||
libmpeg2/motion_comp_coldfire_c.c
|
||||
libmpeg2/motion_comp_coldfire_s.S
|
||||
#elif defined CPU_ARM
|
||||
#if ARM_ARCH >= 6
|
||||
idct_armv6.S
|
||||
libmpeg2/idct_armv6.S
|
||||
#else
|
||||
idct_arm.S
|
||||
libmpeg2/idct_arm.S
|
||||
#endif
|
||||
motion_comp_arm_c.c
|
||||
motion_comp_arm_s.S
|
||||
libmpeg2/motion_comp_arm_c.c
|
||||
libmpeg2/motion_comp_arm_s.S
|
||||
#else /* other CPU or SIM */
|
||||
motion_comp_c.c
|
||||
libmpeg2/motion_comp_c.c
|
||||
#endif /* CPU_* */
|
||||
|
||||
slice.c
|
||||
|
||||
|
||||
alloc.c
|
||||
video_out_rockbox.c
|
||||
video_thread.c
|
||||
pcm_output.c
|
||||
|
|
|
@ -103,7 +103,6 @@
|
|||
#include "mpegplayer.h"
|
||||
#include "lib/helper.h"
|
||||
#include "mpeg_settings.h"
|
||||
#include "mpeg2.h"
|
||||
#include "video_out.h"
|
||||
#include "stream_thread.h"
|
||||
#include "stream_mgr.h"
|
||||
|
|
|
@ -23,8 +23,6 @@
|
|||
#ifndef MPEGPLAYER_H
|
||||
#define MPEGPLAYER_H
|
||||
|
||||
#include "mpeg2.h"
|
||||
|
||||
#ifdef HAVE_SCHEDULER_BOOSTCTRL
|
||||
#define trigger_cpu_boost rb->trigger_cpu_boost
|
||||
#define cancel_cpu_boost rb->cancel_cpu_boost
|
||||
|
@ -74,7 +72,7 @@
|
|||
|
||||
#include "lib/mylcd.h"
|
||||
|
||||
#include "mpeg2.h"
|
||||
#include "libmpeg2/mpeg2.h"
|
||||
#include "video_out.h"
|
||||
#include "mpeg_stream.h"
|
||||
#include "mpeg_misc.h"
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
* KIND, either express or implied.
|
||||
*
|
||||
****************************************************************************/
|
||||
#include "mpeg2dec_config.h"
|
||||
#include "libmpeg2/mpeg2dec_config.h"
|
||||
|
||||
#include "plugin.h"
|
||||
#include "mpegplayer.h"
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
****************************************************************************/
|
||||
#include "plugin.h"
|
||||
#include "mpegplayer.h"
|
||||
#include "mpeg2dec_config.h"
|
||||
#include "libmpeg2/mpeg2dec_config.h"
|
||||
#include "lib/grey.h"
|
||||
#include "video_out.h"
|
||||
#include "mpeg_settings.h"
|
||||
|
|
Loading…
Reference in a new issue