1
0
Fork 0
forked from len0rd/rockbox

mp3buf renamed to audiobuf

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6252 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Linus Nielsen Feltzing 2005-04-05 11:33:58 +00:00
parent 6cf9d51b33
commit d34865a530
22 changed files with 239 additions and 238 deletions

View file

@ -351,8 +351,8 @@ static int add_indices_to_playlist(struct playlist_info* playlist,
audio_stop();
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
buffer = mp3buf;
buflen = (mp3end - mp3buf);
buffer = audiobuf;
buflen = (audiobufend - audiobuf);
}
store_index = true;
@ -1211,8 +1211,8 @@ int playlist_resume(void)
/* use mp3 buffer for maximum load speed */
talk_buffer_steal(); /* we use the mp3 buffer, need to tell */
buflen = (mp3end - mp3buf);
buffer = mp3buf;
buflen = (audiobufend - audiobuf);
buffer = audiobuf;
empty_playlist(playlist, true);
@ -1294,7 +1294,7 @@ int playlist_resume(void)
if (str3[0] != '\0')
{
/* NOTE: add_indices_to_playlist() overwrites the
mp3buf so we need to reload control file
audiobuf so we need to reload control file
data */
add_indices_to_playlist(playlist, NULL, 0);
}