Moved id3.c, mpeg.c and replaygain.c from firmware/ to apps/. This is the first step in separating the generic metadata code and the id3-specific code.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18760 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
98fa3913f9
commit
e76c69f3e4
5 changed files with 6 additions and 4 deletions
|
@ -7,6 +7,7 @@ abrepeat.c
|
||||||
bookmark.c
|
bookmark.c
|
||||||
debug_menu.c
|
debug_menu.c
|
||||||
filetypes.c
|
filetypes.c
|
||||||
|
id3.c
|
||||||
language.c
|
language.c
|
||||||
main.c
|
main.c
|
||||||
menu.c
|
menu.c
|
||||||
|
@ -17,6 +18,9 @@ menus/theme_menu.c
|
||||||
menus/eq_menu.c
|
menus/eq_menu.c
|
||||||
buffering.c
|
buffering.c
|
||||||
voice_thread.c
|
voice_thread.c
|
||||||
|
replaygain.c
|
||||||
|
#else /* !SWCODEC */
|
||||||
|
mpeg.c
|
||||||
#endif
|
#endif
|
||||||
menus/main_menu.c
|
menus/main_menu.c
|
||||||
menus/playback_menu.c
|
menus/playback_menu.c
|
||||||
|
|
|
@ -43,7 +43,6 @@
|
||||||
#ifndef SIMULATOR
|
#ifndef SIMULATOR
|
||||||
#include "i2c.h"
|
#include "i2c.h"
|
||||||
#include "mas.h"
|
#include "mas.h"
|
||||||
#include "dac.h"
|
|
||||||
#include "system.h"
|
#include "system.h"
|
||||||
#include "usb.h"
|
#include "usb.h"
|
||||||
#include "file.h"
|
#include "file.h"
|
||||||
|
@ -2864,8 +2863,10 @@ void audio_init(void)
|
||||||
#endif /* CONFIG_CODEC == MAS3587F */
|
#endif /* CONFIG_CODEC == MAS3587F */
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
|
#ifndef SIMULATOR
|
||||||
dbg_timer_start();
|
dbg_timer_start();
|
||||||
dbg_cnt2us(0);
|
dbg_cnt2us(0);
|
||||||
|
#endif /* !SIMULATOR */
|
||||||
#endif /* DEBUG */
|
#endif /* DEBUG */
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,6 @@ ata_idle_notify.c
|
||||||
events.c
|
events.c
|
||||||
backlight.c
|
backlight.c
|
||||||
buffer.c
|
buffer.c
|
||||||
id3.c
|
|
||||||
powermgmt.c
|
powermgmt.c
|
||||||
system.c
|
system.c
|
||||||
usb.c
|
usb.c
|
||||||
|
@ -189,7 +188,6 @@ sound.c
|
||||||
#ifndef BOOTLOADER
|
#ifndef BOOTLOADER
|
||||||
general.c
|
general.c
|
||||||
pcm_sampr.c
|
pcm_sampr.c
|
||||||
replaygain.c
|
|
||||||
pcm.c
|
pcm.c
|
||||||
#ifdef HAVE_RECORDING
|
#ifdef HAVE_RECORDING
|
||||||
enc_base.c
|
enc_base.c
|
||||||
|
@ -202,7 +200,6 @@ pcm_record.c
|
||||||
#else /* !SWCODEC */
|
#else /* !SWCODEC */
|
||||||
|
|
||||||
#ifndef BOOTLOADER
|
#ifndef BOOTLOADER
|
||||||
mpeg.c
|
|
||||||
#ifndef SIMULATOR
|
#ifndef SIMULATOR
|
||||||
drivers/mas.c
|
drivers/mas.c
|
||||||
#endif /* SIMULATOR */
|
#endif /* SIMULATOR */
|
||||||
|
|
Loading…
Reference in a new issue