summaryrefslogtreecommitdiff
path: root/firmware/mpeg.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-03-19 22:15:53 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-03-19 22:15:53 +0000
commitfa97f161abc45bfd5db86bceb8803d2661e65447 (patch)
tree1e06ac8c47bd9165e46e85235f059372ddad2b90 /firmware/mpeg.c
parent239b70fad38be55075dd14ea8e3c0f6f54a1f35b (diff)
downloadrockbox-fa97f161abc45bfd5db86bceb8803d2661e65447.zip
rockbox-fa97f161abc45bfd5db86bceb8803d2661e65447.tar.gz
rockbox-fa97f161abc45bfd5db86bceb8803d2661e65447.tar.bz2
rockbox-fa97f161abc45bfd5db86bceb8803d2661e65447.tar.xz
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
Diffstat (limited to 'firmware/mpeg.c')
-rw-r--r--firmware/mpeg.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/firmware/mpeg.c b/firmware/mpeg.c
index fcb0d54..ff545f0 100644
--- a/firmware/mpeg.c
+++ b/firmware/mpeg.c
@@ -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 */