forked from len0rd/rockbox
Fix errors and warnings.
The buffer_offset paramter of audio_init_recording() is removed as it was unused in both implementations. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30310 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
7695b0403f
commit
8a701e5488
7 changed files with 13 additions and 15 deletions
|
|
@ -2126,9 +2126,8 @@ void audio_init_playback(void)
|
|||
/****************************************************************************
|
||||
* Recording functions
|
||||
***************************************************************************/
|
||||
void audio_init_recording(unsigned int buffer_offset)
|
||||
void audio_init_recording(void)
|
||||
{
|
||||
buffer_offset = buffer_offset;
|
||||
init_recording_done = false;
|
||||
queue_post(&mpeg_queue, MPEG_INIT_RECORDING, 0);
|
||||
|
||||
|
|
@ -2648,7 +2647,7 @@ void audio_set_recording_gain(int left, int right, int type)
|
|||
(void)right;
|
||||
(void)type;
|
||||
}
|
||||
void audio_init_recording(unsigned int buffer_offset)
|
||||
void audio_init_recording(void)
|
||||
{
|
||||
/* a dummy */
|
||||
(void)buffer_offset;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue