github.com/bluenviron/mediacommon@v1.9.3/pkg/formats/fmp4/codec_ac3.go (about) 1 package fmp4 2 3 // CodecAC3 is the AC-3 codec. 4 type CodecAC3 struct { 5 SampleRate int 6 ChannelCount int 7 Fscod uint8 8 Bsid uint8 9 Bsmod uint8 10 Acmod uint8 11 LfeOn bool 12 BitRateCode uint8 13 } 14 15 // IsVideo implements Codec. 16 func (CodecAC3) IsVideo() bool { 17 return false 18 } 19 20 func (*CodecAC3) isCodec() {}