isobmff-0.13.0.0: src/Data/ByteString/IsoBaseFileFormat/Boxes/DataInformation.hs
-- | Data information container declare the location of media information of a
-- 'Track' the actual location are stored in 'DataReference's.
module Data.ByteString.IsoBaseFileFormat.Boxes.DataInformation where
import Data.ByteString.IsoBaseFileFormat.Box
-- | Data information box phantom type.
data DataInformation
-- | Compose a 'DataInformation' box.
dataInformation
:: Boxes ts -> Box (ContainerBox DataInformation ts)
dataInformation = containerBox ()
instance IsBox DataInformation where
type BoxContent DataInformation = ()
type instance BoxTypeSymbol DataInformation = "dinf"