fix bug: WAV file playback does not resume (FS#11077)

Not only WAV but also Sun audio, SMAF, vox and WAV64 can resume.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25289 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Yoshihisa Uchida 2010-03-22 10:02:05 +00:00
parent 20fccd8489
commit 7a3822c8b0
17 changed files with 188 additions and 69 deletions

View file

@ -100,6 +100,9 @@ next_track:
codec_set_replaygain(ci->id3); codec_set_replaygain(ci->id3);
/* Need to save offset for later use (cleared indirectly by advance_buffer) */
bytesdone = ci->id3->offset;
/* assume the AIFF header is less than 1024 bytes */ /* assume the AIFF header is less than 1024 bytes */
buf = ci->request_buffer(&n, 1024); buf = ci->request_buffer(&n, 1024);
if (n < 54) { if (n < 54) {
@ -279,9 +282,26 @@ next_track:
firstblockposn = 1024 - n; firstblockposn = 1024 - n;
ci->advance_buffer(firstblockposn); ci->advance_buffer(firstblockposn);
/* make sure we're at the correct offset */
if (bytesdone > (uint32_t) firstblockposn) {
/* Round down to previous block */
struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
PCM_SEEK_POS, NULL);
if (newpos->pos > format.numbytes)
goto done;
if (ci->seek_buffer(firstblockposn + newpos->pos))
{
bytesdone = newpos->pos;
decodedsamples = newpos->samples;
}
ci->seek_complete();
} else {
/* already where we need to be */
bytesdone = 0;
}
/* The main decoder loop */ /* The main decoder loop */
bytesdone = 0;
ci->set_elapsed(0);
endofstream = 0; endofstream = 0;
while (!endofstream) { while (!endofstream) {
@ -290,8 +310,8 @@ next_track:
break; break;
if (ci->seek_time) { if (ci->seek_time) {
/* 2nd args(read_buffer) is unnecessary in the format which AIFF supports. */ /* 3rd args(read_buffer) is unnecessary in the format which AIFF supports. */
struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, NULL); struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, PCM_SEEK_TIME, NULL);
if (newpos->pos > format.numbytes) if (newpos->pos > format.numbytes)
break; break;

View file

@ -135,6 +135,9 @@ next_track:
codec_set_replaygain(ci->id3); codec_set_replaygain(ci->id3);
/* Need to save offset for later use (cleared indirectly by advance_buffer) */
bytesdone = ci->id3->offset;
ci->memset(&format, 0, sizeof(struct pcm_format)); ci->memset(&format, 0, sizeof(struct pcm_format));
format.is_signed = true; format.is_signed = true;
format.is_little_endian = false; format.is_little_endian = false;
@ -191,7 +194,6 @@ next_track:
decodedsamples = 0; decodedsamples = 0;
codec = 0; codec = 0;
bytesdone = 0;
/* get codec */ /* get codec */
codec = get_au_codec(format.formattag); codec = get_au_codec(format.formattag);
@ -236,6 +238,25 @@ next_track:
goto done; goto done;
} }
/* make sure we're at the correct offset */
if (bytesdone > (uint32_t) firstblockposn) {
/* Round down to previous block */
struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
PCM_SEEK_POS, NULL);
if (newpos->pos > format.numbytes)
goto done;
if (ci->seek_buffer(firstblockposn + newpos->pos))
{
bytesdone = newpos->pos;
decodedsamples = newpos->samples;
}
ci->seek_complete();
} else {
/* already where we need to be */
bytesdone = 0;
}
/* The main decoder loop */ /* The main decoder loop */
endofstream = 0; endofstream = 0;
@ -246,8 +267,8 @@ next_track:
} }
if (ci->seek_time) { if (ci->seek_time) {
/* 2nd args(read_buffer) is unnecessary in the format which Sun Audio supports. */ /* 3rd args(read_buffer) is unnecessary in the format which Sun Audio supports. */
struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, NULL); struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, PCM_SEEK_TIME, NULL);
if (newpos->pos > format.numbytes) if (newpos->pos > format.numbytes)
break; break;

View file

@ -44,6 +44,7 @@ static const int index_table[] ICONST_ATTR = {
}; };
static struct adpcm_data cur_data; static struct adpcm_data cur_data;
static int blocksperchunk;
static struct pcm_format *fmt; static struct pcm_format *fmt;
@ -71,7 +72,8 @@ static bool set_format(struct pcm_format *format)
fmt->samplesperblock = 2; fmt->samplesperblock = 2;
/* chunksize = about 1/32[sec] data */ /* chunksize = about 1/32[sec] data */
fmt->chunksize = ci->id3->frequency >> 6; blocksperchunk = ci->id3->frequency >> 6;
fmt->chunksize = blocksperchunk * fmt->blockalign;
max_chunk_count = (uint64_t)ci->id3->length * ci->id3->frequency max_chunk_count = (uint64_t)ci->id3->length * ci->id3->frequency
/ (2000LL * fmt->chunksize); / (2000LL * fmt->chunksize);
@ -146,20 +148,18 @@ static int decode_for_seek(const uint8_t *inbuf, size_t inbufsize)
return CODEC_OK; return CODEC_OK;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t seek_count = 0; uint32_t seek_count = (seek_mode == PCM_SEEK_TIME)?
uint32_t new_count; ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ (blocksperchunk * fmt->samplesperblock) :
seek_val / fmt->chunksize;
uint32_t new_count = seek(seek_count, &cur_data, read_buffer, &decode_for_seek);
if (seek_time > 0)
seek_count = (uint64_t)seek_time * ci->id3->frequency
/ (2000LL * fmt->chunksize);
new_count = seek(seek_count, &cur_data, read_buffer, &decode_for_seek);
newpos.pos = new_count * fmt->chunksize; newpos.pos = new_count * fmt->chunksize;
newpos.samples = (newpos.pos / fmt->blockalign) * fmt->samplesperblock; newpos.samples = new_count * blocksperchunk * fmt->samplesperblock;
return &newpos; return &newpos;
} }

View file

@ -54,12 +54,14 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t newblock = ((uint64_t)seek_time * ci->id3->frequency) uint32_t newblock = (seek_mode == PCM_SEEK_TIME) ?
/ (1000LL * fmt->samplesperblock); ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ fmt->samplesperblock :
seek_val / fmt->blockalign;
(void)read_buffer; (void)read_buffer;
newpos.pos = newblock * fmt->blockalign; newpos.pos = newblock * fmt->blockalign;

View file

@ -59,12 +59,14 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t newblock = ((uint64_t)seek_time * ci->id3->frequency) uint32_t newblock = (seek_mode == PCM_SEEK_TIME) ?
/ (1000LL * fmt->samplesperblock); ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ fmt->samplesperblock :
seek_val / fmt->blockalign;
(void)read_buffer; (void)read_buffer;
newpos.pos = newblock * fmt->blockalign; newpos.pos = newblock * fmt->blockalign;

View file

@ -139,12 +139,14 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t newblock = ((uint64_t)seek_time * ci->id3->frequency) uint32_t newblock = (seek_mode == PCM_SEEK_TIME) ?
/ (1000LL * fmt->samplesperblock); ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ fmt->samplesperblock :
seek_val / fmt->blockalign;
(void)read_buffer; (void)read_buffer;
newpos.pos = newblock * fmt->blockalign; newpos.pos = newblock * fmt->blockalign;

View file

@ -71,12 +71,14 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t newblock = ((uint64_t)seek_time * ci->id3->frequency) uint32_t newblock = (seek_mode == PCM_SEEK_TIME) ?
/ (1000LL * fmt->samplesperblock); ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ fmt->samplesperblock :
seek_val / fmt->blockalign;
(void)read_buffer; (void)read_buffer;
newpos.pos = newblock * fmt->blockalign; newpos.pos = newblock * fmt->blockalign;

View file

@ -60,12 +60,14 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t newblock = ((uint64_t)seek_time * ci->id3->frequency) uint32_t newblock = (seek_mode == PCM_SEEK_TIME) ?
/ (1000LL * fmt->samplesperblock); ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ fmt->samplesperblock :
seek_val / fmt->blockalign;
(void)read_buffer; (void)read_buffer;
newpos.pos = newblock * fmt->blockalign; newpos.pos = newblock * fmt->blockalign;

View file

@ -124,6 +124,9 @@ struct pcm_pos {
uint32_t samples; uint32_t samples;
}; };
#define PCM_SEEK_TIME 0
#define PCM_SEEK_POS 1
struct pcm_codec { struct pcm_codec {
/* /*
* sets the format speciffic RIFF/AIFF header information and checks the pcm_format. * sets the format speciffic RIFF/AIFF header information and checks the pcm_format.
@ -140,8 +143,12 @@ struct pcm_codec {
/* /*
* get seek position * get seek position
* *
* [In] seek_time * [In] seek_val
* seek time [ms] * seek time [ms] or seek position
*
* [In] seek_mode
* if seek_mode sets PCM_SEEK_TIME, then seek_val means the seek time.
* if seek_mode sets PCM_SEEK_POS, then seek_val means the seek position.
* *
* [In] read_buffer * [In] read_buffer
* the function which reads the data from the file (chunksize bytes read). * the function which reads the data from the file (chunksize bytes read).
@ -149,7 +156,7 @@ struct pcm_codec {
* return * return
* position after the seeking. * position after the seeking.
*/ */
struct pcm_pos *(*get_seek_pos)(long seek_time, struct pcm_pos *(*get_seek_pos)(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)); uint8_t *(*read_buffer)(size_t *realsize));
/* /*

View file

@ -57,12 +57,14 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t newblock = ((uint64_t)seek_time * ci->id3->frequency) uint32_t newblock = (seek_mode == PCM_SEEK_TIME) ?
/ (1000LL * fmt->samplesperblock); ((uint64_t)seek_val * ci->id3->frequency / 1000LL)
/ fmt->samplesperblock :
seek_val / fmt->blockalign;
(void)read_buffer; (void)read_buffer;
newpos.pos = newblock * fmt->blockalign; newpos.pos = newblock * fmt->blockalign;

View file

@ -81,20 +81,21 @@ static bool set_format(struct pcm_format *format)
return true; return true;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t chunkbits = blockbits; uint32_t chunkbits = blockbits;
uint32_t seekbits = (((uint64_t)seek_time * ci->id3->frequency) uint32_t seekblocks = (seek_mode == PCM_SEEK_TIME)?
/ (1000LL * fmt->samplesperblock)) * blockbits + 2; ((uint64_t)seek_val * ci->id3->frequency)
/ (1000LL * fmt->samplesperblock) :
((seek_val << 3) - 2) / blockbits;
uint32_t seekbits = seekblocks * blockbits + 2;
(void)read_buffer; (void)read_buffer;
newpos.pos = seekbits >> 3; newpos.pos = seekbits >> 3;
newpos.samples = (((uint64_t)seek_time * ci->id3->frequency) newpos.samples = seekblocks * fmt->samplesperblock;
/ (1000LL * fmt->samplesperblock))
* fmt->samplesperblock;
if (newpos.pos == 0) if (newpos.pos == 0)
{ {

View file

@ -214,15 +214,14 @@ static int decode_for_seek(const uint8_t *inbuf, size_t inbufsize)
return CODEC_OK; return CODEC_OK;
} }
static struct pcm_pos *get_seek_pos(long seek_time, static struct pcm_pos *get_seek_pos(uint32_t seek_val, int seek_mode,
uint8_t *(*read_buffer)(size_t *realsize)) uint8_t *(*read_buffer)(size_t *realsize))
{ {
static struct pcm_pos newpos; static struct pcm_pos newpos;
uint32_t new_count= 0; uint32_t new_count = (seek_mode == PCM_SEEK_TIME)?
((uint64_t)seek_val * ci->id3->frequency / 1000LL)
if (seek_time > 0) / (blocksperchunk * fmt->samplesperblock) :
new_count = ((uint64_t)seek_time * ci->id3->frequency seek_val / fmt->chunksize;
/ (1000LL * fmt->samplesperblock)) / blocksperchunk;
if (!has_block_header) if (!has_block_header)
{ {

View file

@ -409,6 +409,28 @@ next_track:
ci->seek_buffer(firstblockposn); ci->seek_buffer(firstblockposn);
ci->seek_complete(); ci->seek_complete();
/* make sure we're at the correct offset */
if (bytesdone > (uint32_t) firstblockposn)
{
/* Round down to previous block */
struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
PCM_SEEK_POS, &read_buffer);
if (newpos->pos > format.numbytes)
goto done;
if (ci->seek_buffer(firstblockposn + newpos->pos))
{
bytesdone = newpos->pos;
decodedsamples = newpos->samples;
}
ci->seek_complete();
}
else
{
/* already where we need to be */
bytesdone = 0;
}
/* The main decoder loop */ /* The main decoder loop */
endofstream = 0; endofstream = 0;
@ -418,7 +440,8 @@ next_track:
break; break;
if (ci->seek_time) { if (ci->seek_time) {
struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, &read_buffer); struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, PCM_SEEK_TIME,
&read_buffer);
if (newpos->pos > format.numbytes) if (newpos->pos > format.numbytes)
break; break;

View file

@ -52,9 +52,8 @@ enum codec_status codec_main(void)
int bufcount; int bufcount;
int endofstream; int endofstream;
uint8_t *voxbuf; uint8_t *voxbuf;
off_t firstblockposn; /* position of the first block in file */ off_t firstblockposn = 0; /* position of the first block in file */
const struct pcm_codec *codec; const struct pcm_codec *codec;
int offset = 0;
/* Generic codec initialisation */ /* Generic codec initialisation */
ci->configure(DSP_SET_SAMPLE_DEPTH, PCM_OUTPUT_DEPTH-1); ci->configure(DSP_SET_SAMPLE_DEPTH, PCM_OUTPUT_DEPTH-1);
@ -70,7 +69,10 @@ next_track:
ci->sleep(1); ci->sleep(1);
codec_set_replaygain(ci->id3); codec_set_replaygain(ci->id3);
/* Need to save offset for later use (cleared indirectly by advance_buffer) */
bytesdone = ci->id3->offset;
ci->memset(&format, 0, sizeof(struct pcm_format)); ci->memset(&format, 0, sizeof(struct pcm_format));
/* set format */ /* set format */
@ -80,12 +82,9 @@ next_track:
format.blockalign = 1; format.blockalign = 1;
/* advance to first WAVE chunk */ /* advance to first WAVE chunk */
ci->advance_buffer(offset); firstblockposn = 0;
firstblockposn = offset;
decodedsamples = 0; decodedsamples = 0;
bytesdone = 0; ci->advance_buffer(firstblockposn);
/* /*
* get codec * get codec
@ -124,6 +123,25 @@ next_track:
ci->configure(DSP_SWITCH_FREQUENCY, ci->id3->frequency); ci->configure(DSP_SWITCH_FREQUENCY, ci->id3->frequency);
ci->configure(DSP_SET_STEREO_MODE, STEREO_MONO); ci->configure(DSP_SET_STEREO_MODE, STEREO_MONO);
/* make sure we're at the correct offset */
if (bytesdone > (uint32_t) firstblockposn) {
/* Round down to previous block */
struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
PCM_SEEK_POS, &read_buffer);
if (newpos->pos > format.numbytes)
goto done;
if (ci->seek_buffer(firstblockposn + newpos->pos))
{
bytesdone = newpos->pos;
decodedsamples = newpos->samples;
}
ci->seek_complete();
} else {
/* already where we need to be */
bytesdone = 0;
}
/* The main decoder loop */ /* The main decoder loop */
endofstream = 0; endofstream = 0;
@ -134,7 +152,8 @@ next_track:
} }
if (ci->seek_time) { if (ci->seek_time) {
struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, &read_buffer); struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, PCM_SEEK_TIME,
&read_buffer);
if (newpos->pos > format.numbytes) if (newpos->pos > format.numbytes)
break; break;

View file

@ -374,10 +374,17 @@ next_track:
/* make sure we're at the correct offset */ /* make sure we're at the correct offset */
if (bytesdone > (uint32_t) firstblockposn) { if (bytesdone > (uint32_t) firstblockposn) {
/* Round down to previous block */ /* Round down to previous block */
uint32_t offset = bytesdone - bytesdone % format.blockalign; struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
PCM_SEEK_POS, &read_buffer);
ci->advance_buffer(offset-firstblockposn); if (newpos->pos > format.numbytes)
bytesdone = offset - firstblockposn; goto done;
if (ci->seek_buffer(firstblockposn + newpos->pos))
{
bytesdone = newpos->pos;
decodedsamples = newpos->samples;
}
ci->seek_complete();
} else { } else {
/* already where we need to be */ /* already where we need to be */
bytesdone = 0; bytesdone = 0;
@ -393,7 +400,8 @@ next_track:
} }
if (ci->seek_time) { if (ci->seek_time) {
struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, &read_buffer); struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, PCM_SEEK_TIME,
&read_buffer);
if (newpos->pos > format.numbytes) if (newpos->pos > format.numbytes)
break; break;

View file

@ -380,10 +380,17 @@ next_track:
/* make sure we're at the correct offset */ /* make sure we're at the correct offset */
if (bytesdone > (uint32_t) firstblockposn) { if (bytesdone > (uint32_t) firstblockposn) {
/* Round down to previous block */ /* Round down to previous block */
uint32_t offset = bytesdone - bytesdone % format.blockalign; struct pcm_pos *newpos = codec->get_seek_pos(bytesdone - firstblockposn,
PCM_SEEK_POS, &read_buffer);
ci->advance_buffer(offset-firstblockposn); if (newpos->pos > format.numbytes)
bytesdone = offset - firstblockposn; goto done;
if (ci->seek_buffer(firstblockposn + newpos->pos))
{
bytesdone = newpos->pos;
decodedsamples = newpos->samples;
}
ci->seek_complete();
} else { } else {
/* already where we need to be */ /* already where we need to be */
bytesdone = 0; bytesdone = 0;
@ -399,7 +406,8 @@ next_track:
} }
if (ci->seek_time) { if (ci->seek_time) {
struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, &read_buffer); struct pcm_pos *newpos = codec->get_seek_pos(ci->seek_time, PCM_SEEK_TIME,
&read_buffer);
if (newpos->pos > format.numbytes) if (newpos->pos > format.numbytes)
break; break;

View file

@ -40,6 +40,7 @@ bool get_vox_metadata(int fd, struct mp3entry* id3)
* bitspersample: 4 * bitspersample: 4
*/ */
id3->frequency = 8000; id3->frequency = 8000;
id3->bitrate = 8000 * 4 / 1000;
id3->vbr = false; /* All VOX files are CBR */ id3->vbr = false; /* All VOX files are CBR */
id3->filesize = filesize(fd); id3->filesize = filesize(fd);
id3->length = id3->filesize >> 2; id3->length = id3->filesize >> 2;