isobmff-builder-0.11.2.0: src/Data/ByteString/IsoBaseFileFormat/Boxes/MovieFragment.hs
-- | TODO: this box is a bit of a hack due to the deadline pressure...
module Data.ByteString.IsoBaseFileFormat.Boxes.MovieFragment where
import Data.ByteString.IsoBaseFileFormat.Box
-- | Compose a set of boxes into a 'MovieFragment'
movieFragment :: Boxes ts -> Box (ContainerBox MovieFragment ts)
movieFragment = containerBox ()
-- | Movie Fragments
data MovieFragment
instance IsBox MovieFragment where
type BoxContent MovieFragment = ()
type instance BoxTypeSymbol MovieFragment = "moof"
-- | Return the static size of the empty box
movieFragmentStaticSize :: Num a => a
movieFragmentStaticSize = fromBoxSize 0 (boxSize (movieFragment NoBoxes))