github.com/bluenviron/mediacommon@v1.9.3/pkg/codecs/mpeg4audio/object_type.go (about) 1 package mpeg4audio 2 3 // ObjectType is a MPEG-4 Audio object type. 4 // Specification: ISO 14496-3, Table 1.17 5 type ObjectType int 6 7 // supported types. 8 const ( 9 ObjectTypeAACLC ObjectType = 2 10 ObjectTypeSBR ObjectType = 5 11 ObjectTypePS ObjectType = 29 12 )