mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 04:57:44 +00:00
LibAudio: Add the Int32 sample format
The signed 32-bit PCM sample format is required for the FLAC standard.
This commit is contained in:
parent
9d4c50ca60
commit
d599a14545
2 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,7 @@ u16 pcm_bits_per_sample(PcmSampleFormat format)
|
|||
return 16;
|
||||
case Int24:
|
||||
return 24;
|
||||
case Int32:
|
||||
case Float32:
|
||||
return 32;
|
||||
case Float64:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue