mirror of
https://github.com/bluenviron/mediacommon.git
synced 2025-09-26 21:01:14 +08:00
18 lines
326 B
Go
18 lines
326 B
Go
package mp4
|
|
|
|
import (
|
|
"github.com/bluenviron/mediacommon/v2/pkg/codecs/mpeg4audio"
|
|
)
|
|
|
|
// CodecMPEG4Audio is a MPEG-4 Audio codec.
|
|
type CodecMPEG4Audio struct {
|
|
Config mpeg4audio.AudioSpecificConfig
|
|
}
|
|
|
|
// IsVideo implements Codec.
|
|
func (CodecMPEG4Audio) IsVideo() bool {
|
|
return false
|
|
}
|
|
|
|
func (*CodecMPEG4Audio) isCodec() {}
|