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