From 808e401f8a120011dab47c8246186032bbe1923f Mon Sep 17 00:00:00 2001 From: AceKombat Date: Tue, 24 Jan 2023 03:17:10 -0600 Subject: [PATCH] Update coding.h --- src/coding/coding.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/coding/coding.h b/src/coding/coding.h index d22779e0..2d36f348 100644 --- a/src/coding/coding.h +++ b/src/coding/coding.h @@ -94,6 +94,7 @@ void decode_alaw(VGMSTREAMCHANNEL* stream, sample_t* outbuf, int channelspacing, void decode_pcmfloat(VGMSTREAMCHANNEL* stream, sample_t* outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do, int big_endian); void decode_pcm24le(VGMSTREAMCHANNEL* stream, sample_t* outbuf, int channelspacing, int32_t first_sample, int32_t samples_to_do); int32_t pcm_bytes_to_samples(size_t bytes, int channels, int bits_per_sample); +int32_t pcm24_bytes_to_samples(size_t bytes, int channels); int32_t pcm16_bytes_to_samples(size_t bytes, int channels); int32_t pcm8_bytes_to_samples(size_t bytes, int channels);