github.com/bluenviron/mediacommon@v1.9.3/pkg/formats/fmp4/codec_lpcm.go (about) 1 package fmp4 2 3 // CodecLPCM is the LPCM codec. 4 type CodecLPCM struct { 5 LittleEndian bool 6 BitDepth int 7 SampleRate int 8 ChannelCount int 9 } 10 11 // IsVideo implements Codec. 12 func (CodecLPCM) IsVideo() bool { 13 return false 14 } 15 16 func (*CodecLPCM) isCodec() {}