Skip to content

Commit 413c8e5

Browse files
authored
Fix the comment for the stereo 16 bit case (#35)
1 parent 81d3358 commit 413c8e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/decode/flac/flac_decoder.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ FLACDecoderResult FLACDecoder::decode_frame(const uint8_t *buffer, size_t buffer
279279

280280
FLAC_OPTIMIZE_O3
281281
void FLACDecoder::write_samples_16bit_stereo(uint8_t *output_buffer, uint32_t block_size) {
282-
// 16-bit mono fast path
282+
// 16-bit stereo fast path
283283
int16_t *output_samples = reinterpret_cast<int16_t *>(output_buffer);
284284

285285
for (uint32_t i = 0; i < block_size; ++i) {

0 commit comments

Comments
 (0)