PcmCodec type
Settings for an LPCM codec
Signature:
export type PcmCodec = {
type: "pcm";
sampleRate: SampleRate;
channelLayout: ChannelLayout;
endianness: "big" | "little";
bitDepth: 16 | 20 | 24;
};
typescript
References: SampleRate, ChannelLayout