decoder/dsd: use decoder_read_full() where appropriate
Addresses Mantis ticket 0004015. [mk: use decoder_read_full() only when needed, and a few formal changes]
This commit is contained in:
parent
20538516b9
commit
09384df32c
1
NEWS
1
NEWS
|
@ -5,6 +5,7 @@ ver 0.18.12 (not yet released)
|
||||||
* decoder
|
* decoder
|
||||||
- audiofile: improve responsiveness
|
- audiofile: improve responsiveness
|
||||||
- audiofile: fix WAV stream playback
|
- audiofile: fix WAV stream playback
|
||||||
|
- dsdiff, dsf: fix stream playback
|
||||||
|
|
||||||
ver 0.18.11 (2014/05/12)
|
ver 0.18.11 (2014/05/12)
|
||||||
* decoder
|
* decoder
|
||||||
|
|
|
@ -49,14 +49,6 @@ DsdId::Equals(const char *s) const
|
||||||
return memcmp(value, s, sizeof(value)) == 0;
|
return memcmp(value, s, sizeof(value)) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
|
||||||
dsdlib_read(Decoder *decoder, InputStream &is,
|
|
||||||
void *data, size_t length)
|
|
||||||
{
|
|
||||||
size_t nbytes = decoder_read(decoder, is, data, length);
|
|
||||||
return nbytes == length;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Skip the #input_stream to the specified offset.
|
* Skip the #input_stream to the specified offset.
|
||||||
*/
|
*/
|
||||||
|
@ -149,7 +141,7 @@ dsdlib_tag_id3(InputStream &is,
|
||||||
id3_byte_t *dsdid3data;
|
id3_byte_t *dsdid3data;
|
||||||
dsdid3data = dsdid3;
|
dsdid3data = dsdid3;
|
||||||
|
|
||||||
if (!dsdlib_read(nullptr, is, dsdid3data, count))
|
if (!decoder_read_full(nullptr, is, dsdid3data, count))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
id3_tag = id3_tag_parse(dsdid3data, count);
|
id3_tag = id3_tag_parse(dsdid3data, count);
|
||||||
|
|
|
@ -58,10 +58,6 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
bool
|
|
||||||
dsdlib_read(Decoder *decoder, InputStream &is,
|
|
||||||
void *data, size_t length);
|
|
||||||
|
|
||||||
bool
|
bool
|
||||||
dsdlib_skip_to(Decoder *decoder, InputStream &is,
|
dsdlib_skip_to(Decoder *decoder, InputStream &is,
|
||||||
int64_t offset);
|
int64_t offset);
|
||||||
|
|
|
@ -93,14 +93,14 @@ static bool
|
||||||
dsdiff_read_id(Decoder *decoder, InputStream &is,
|
dsdiff_read_id(Decoder *decoder, InputStream &is,
|
||||||
DsdId *id)
|
DsdId *id)
|
||||||
{
|
{
|
||||||
return dsdlib_read(decoder, is, id, sizeof(*id));
|
return decoder_read_full(decoder, is, id, sizeof(*id));
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
dsdiff_read_chunk_header(Decoder *decoder, InputStream &is,
|
dsdiff_read_chunk_header(Decoder *decoder, InputStream &is,
|
||||||
DsdiffChunkHeader *header)
|
DsdiffChunkHeader *header)
|
||||||
{
|
{
|
||||||
return dsdlib_read(decoder, is, header, sizeof(*header));
|
return decoder_read_full(decoder, is, header, sizeof(*header));
|
||||||
}
|
}
|
||||||
|
|
||||||
static bool
|
static bool
|
||||||
|
@ -112,8 +112,7 @@ dsdiff_read_payload(Decoder *decoder, InputStream &is,
|
||||||
if (size != (uint64_t)length)
|
if (size != (uint64_t)length)
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
size_t nbytes = decoder_read(decoder, is, data, length);
|
return decoder_read_full(decoder, is, data, length);
|
||||||
return nbytes == length;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -145,8 +144,8 @@ dsdiff_read_prop_snd(Decoder *decoder, InputStream &is,
|
||||||
} else if (header.id.Equals("CHNL")) {
|
} else if (header.id.Equals("CHNL")) {
|
||||||
uint16_t channels;
|
uint16_t channels;
|
||||||
if (header.GetSize() < sizeof(channels) ||
|
if (header.GetSize() < sizeof(channels) ||
|
||||||
!dsdlib_read(decoder, is,
|
!decoder_read_full(decoder, is,
|
||||||
&channels, sizeof(channels)) ||
|
&channels, sizeof(channels)) ||
|
||||||
!dsdlib_skip_to(decoder, is, chunk_end_offset))
|
!dsdlib_skip_to(decoder, is, chunk_end_offset))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -154,8 +153,8 @@ dsdiff_read_prop_snd(Decoder *decoder, InputStream &is,
|
||||||
} else if (header.id.Equals("CMPR")) {
|
} else if (header.id.Equals("CMPR")) {
|
||||||
DsdId type;
|
DsdId type;
|
||||||
if (header.GetSize() < sizeof(type) ||
|
if (header.GetSize() < sizeof(type) ||
|
||||||
!dsdlib_read(decoder, is,
|
!decoder_read_full(decoder, is,
|
||||||
&type, sizeof(type)) ||
|
&type, sizeof(type)) ||
|
||||||
!dsdlib_skip_to(decoder, is, chunk_end_offset))
|
!dsdlib_skip_to(decoder, is, chunk_end_offset))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -208,7 +207,7 @@ dsdiff_handle_native_tag(InputStream &is,
|
||||||
|
|
||||||
struct dsdiff_native_tag metatag;
|
struct dsdiff_native_tag metatag;
|
||||||
|
|
||||||
if (!dsdlib_read(nullptr, is, &metatag, sizeof(metatag)))
|
if (!decoder_read_full(nullptr, is, &metatag, sizeof(metatag)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
uint32_t length = FromBE32(metatag.size);
|
uint32_t length = FromBE32(metatag.size);
|
||||||
|
@ -221,7 +220,7 @@ dsdiff_handle_native_tag(InputStream &is,
|
||||||
char *label;
|
char *label;
|
||||||
label = string;
|
label = string;
|
||||||
|
|
||||||
if (!dsdlib_read(nullptr, is, label, (size_t)length))
|
if (!decoder_read_full(nullptr, is, label, (size_t)length))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
string[length] = '\0';
|
string[length] = '\0';
|
||||||
|
@ -328,7 +327,7 @@ dsdiff_read_metadata(Decoder *decoder, InputStream &is,
|
||||||
DsdiffChunkHeader *chunk_header)
|
DsdiffChunkHeader *chunk_header)
|
||||||
{
|
{
|
||||||
DsdiffHeader header;
|
DsdiffHeader header;
|
||||||
if (!dsdlib_read(decoder, is, &header, sizeof(header)) ||
|
if (!decoder_read_full(decoder, is, &header, sizeof(header)) ||
|
||||||
!header.id.Equals("FRM8") ||
|
!header.id.Equals("FRM8") ||
|
||||||
!header.format.Equals("DSD "))
|
!header.format.Equals("DSD "))
|
||||||
return false;
|
return false;
|
||||||
|
@ -391,10 +390,10 @@ dsdiff_decode_chunk(Decoder &decoder, InputStream &is,
|
||||||
now_size = now_frames * frame_size;
|
now_size = now_frames * frame_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t nbytes = decoder_read(decoder, is, buffer, now_size);
|
if (!decoder_read_full(&decoder, is, buffer, now_size))
|
||||||
if (nbytes != now_size)
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
const size_t nbytes = now_size;
|
||||||
chunk_size -= nbytes;
|
chunk_size -= nbytes;
|
||||||
|
|
||||||
if (lsbitfirst)
|
if (lsbitfirst)
|
||||||
|
|
|
@ -103,7 +103,7 @@ dsf_read_metadata(Decoder *decoder, InputStream &is,
|
||||||
DsfMetaData *metadata)
|
DsfMetaData *metadata)
|
||||||
{
|
{
|
||||||
DsfHeader dsf_header;
|
DsfHeader dsf_header;
|
||||||
if (!dsdlib_read(decoder, is, &dsf_header, sizeof(dsf_header)) ||
|
if (!decoder_read_full(decoder, is, &dsf_header, sizeof(dsf_header)) ||
|
||||||
!dsf_header.id.Equals("DSD "))
|
!dsf_header.id.Equals("DSD "))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -117,7 +117,8 @@ dsf_read_metadata(Decoder *decoder, InputStream &is,
|
||||||
|
|
||||||
/* read the 'fmt ' chunk of the DSF file */
|
/* read the 'fmt ' chunk of the DSF file */
|
||||||
DsfFmtChunk dsf_fmt_chunk;
|
DsfFmtChunk dsf_fmt_chunk;
|
||||||
if (!dsdlib_read(decoder, is, &dsf_fmt_chunk, sizeof(dsf_fmt_chunk)) ||
|
if (!decoder_read_full(decoder, is,
|
||||||
|
&dsf_fmt_chunk, sizeof(dsf_fmt_chunk)) ||
|
||||||
!dsf_fmt_chunk.id.Equals("fmt "))
|
!dsf_fmt_chunk.id.Equals("fmt "))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -143,7 +144,7 @@ dsf_read_metadata(Decoder *decoder, InputStream &is,
|
||||||
|
|
||||||
/* read the 'data' chunk of the DSF file */
|
/* read the 'data' chunk of the DSF file */
|
||||||
DsfDataChunk data_chunk;
|
DsfDataChunk data_chunk;
|
||||||
if (!dsdlib_read(decoder, is, &data_chunk, sizeof(data_chunk)) ||
|
if (!decoder_read_full(decoder, is, &data_chunk, sizeof(data_chunk)) ||
|
||||||
!data_chunk.id.Equals("data"))
|
!data_chunk.id.Equals("data"))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
@ -247,10 +248,10 @@ dsf_decode_chunk(Decoder &decoder, InputStream &is,
|
||||||
now_size = now_frames * frame_size;
|
now_size = now_frames * frame_size;
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t nbytes = decoder_read(&decoder, is, buffer, now_size);
|
if (!decoder_read_full(&decoder, is, buffer, now_size))
|
||||||
if (nbytes != now_size)
|
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
const size_t nbytes = now_size;
|
||||||
chunk_size -= nbytes;
|
chunk_size -= nbytes;
|
||||||
|
|
||||||
if (bitreverse)
|
if (bitreverse)
|
||||||
|
|
Loading…
Reference in New Issue