forked from len0rd/rockbox
Third step of the voice-UI: numerical settings are spoken (composed at runtime), needs new voicefont at the new location ".rockbox/langs/english.voice"
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4414 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
239b70fad3
commit
fa97f161ab
14 changed files with 619 additions and 375 deletions
|
@ -30,7 +30,6 @@
|
|||
#include "mp3data.h"
|
||||
#include "buffer.h"
|
||||
#include "mp3_playback.h"
|
||||
#include "talk.h"
|
||||
#ifndef SIMULATOR
|
||||
#include "i2c.h"
|
||||
#include "mas.h"
|
||||
|
@ -2135,7 +2134,6 @@ void mpeg_record(char *filename)
|
|||
recording_filename[MAX_PATH - 1] = 0;
|
||||
|
||||
disable_xing_header = false;
|
||||
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
|
||||
queue_post(&mpeg_queue, MPEG_RECORD, NULL);
|
||||
}
|
||||
|
||||
|
@ -2150,7 +2148,6 @@ static void start_prerecording(void)
|
|||
prerecord_timeout = current_tick + HZ;
|
||||
memset(prerecord_buffer, 0, sizeof(prerecord_buffer));
|
||||
reset_mp3_buffer();
|
||||
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
|
||||
|
||||
is_prerecording = true;
|
||||
|
||||
|
@ -2407,7 +2404,6 @@ void mpeg_play(int offset)
|
|||
#else
|
||||
is_playing = true;
|
||||
|
||||
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
|
||||
queue_post(&mpeg_queue, MPEG_PLAY, (void*)offset);
|
||||
#endif /* #ifdef SIMULATOR */
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue