mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-18 17:42:36 -05:00
It's now possible to select the crossfading mode: "Off, Crossfade,
Mix". If set to mix, no fading is applied but tracks are mixed up. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7224 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
4f6375ca17
commit
90161c92dd
9 changed files with 82 additions and 18 deletions
|
|
@ -71,7 +71,7 @@ struct mp3entry* audio_current_track(void);
|
|||
struct mp3entry* audio_next_track(void);
|
||||
bool audio_has_changed_track(void);
|
||||
void audio_get_debugdata(struct audio_debug *dbgdata);
|
||||
void audio_set_crossfade_amount(int seconds);
|
||||
void audio_set_crossfade(int type);
|
||||
void audio_set_buffer_margin(int seconds);
|
||||
unsigned int audio_error(void);
|
||||
void audio_error_clear(void);
|
||||
|
|
|
|||
|
|
@ -286,7 +286,7 @@ void DMA0(void)
|
|||
/* Stop on error */
|
||||
if(res & 0x70)
|
||||
{
|
||||
dma_stop();
|
||||
pcm_play_stop();
|
||||
logf("DMA Error:0x%04x", res);
|
||||
}
|
||||
else
|
||||
|
|
@ -302,7 +302,7 @@ void DMA0(void)
|
|||
else
|
||||
{
|
||||
/* Finished playing */
|
||||
dma_stop();
|
||||
pcm_play_stop();
|
||||
logf("DMA No Data:0x%04x", res);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue