decoder/dsdiff: eliminate local variable "buffer_samples"
This commit is contained in:
parent
40db9dff3b
commit
7f22685fa3
@ -363,8 +363,7 @@ dsdiff_decode_chunk(Decoder &decoder, InputStream &is,
|
||||
const size_t sample_size = sizeof(buffer[0]);
|
||||
const size_t frame_size = channels * sample_size;
|
||||
const unsigned buffer_frames = sizeof(buffer) / frame_size;
|
||||
const unsigned buffer_samples = buffer_frames * frame_size;
|
||||
const size_t buffer_size = buffer_samples * sample_size;
|
||||
const size_t buffer_size = buffer_frames * frame_size;
|
||||
|
||||
while (chunk_size >= frame_size) {
|
||||
/* see how much aligned data from the remaining chunk
|
||||
|
Loading…
Reference in New Issue
Block a user