forked from len0rd/rockbox
Straighten out some audio path APIs and misc. audio stuff. Having recording is not a prerequisite to having input/output source selection which is probably most useful when adding a audio input features like FM to a new port without forcing recording to be implemented first.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13599 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a85793fc54
commit
2d48d0ffa6
22 changed files with 237 additions and 154 deletions
|
@ -29,7 +29,7 @@ void audio_set_output_source(int source)
|
|||
source = AUDIO_SRC_PLAYBACK;
|
||||
} /* audio_set_output_source */
|
||||
|
||||
void audio_set_source(int source, unsigned flags)
|
||||
void audio_input_mux(int source, unsigned flags)
|
||||
{
|
||||
(void)flags;
|
||||
/* Prevent pops from unneeded switching */
|
||||
|
@ -87,6 +87,6 @@ void audio_set_source(int source, unsigned flags)
|
|||
} /* end switch */
|
||||
|
||||
last_source = source;
|
||||
} /* audio_set_source */
|
||||
} /* audio_input_mux */
|
||||
|
||||
|
||||
|
|
|
@ -39,7 +39,7 @@ void audio_set_output_source(int source)
|
|||
set_fiq_status(oldmode);
|
||||
} /* audio_set_output_source */
|
||||
|
||||
void audio_set_source(int source, unsigned flags)
|
||||
void audio_input_mux(int source, unsigned flags)
|
||||
{
|
||||
static int last_source = AUDIO_SRC_PLAYBACK;
|
||||
static bool last_recording = false;
|
||||
|
@ -89,6 +89,4 @@ void audio_set_source(int source, unsigned flags)
|
|||
} /* end switch */
|
||||
|
||||
last_source = source;
|
||||
} /* audio_set_source */
|
||||
|
||||
|
||||
} /* audio_input_mux */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue