| Safe Haskell | None |
|---|---|
| Language | Haskell2010 |
Data.ByteString.IsoBaseFileFormat.Boxes.VisualSampleEntry
Description
Detailed visual sample description.
- visualSampleEntry :: KnownSymbol (BoxTypeSymbol (SampleEntry VideoTrack (VideoCoding codec))) => VideoCoding codec -> U16 "data_reference_index" -> SampleEntry VideoTrack (VideoCoding codec) -> Box (SampleEntry VideoTrack (VideoCoding codec))
- data family VideoCoding (c :: Symbol)
- cleanAperture :: CleanAperture -> Box CleanAperture
- newtype CleanAperture where
- pixelAspectRatio :: PixelAspectRatio -> Box PixelAspectRatio
- newtype PixelAspectRatio where
- PixelAspectRatio :: (U32 "hSpacing" :+ U32 "vSpacing") -> PixelAspectRatio
- colourInformation :: ColourType p -> ColourInformation p
- onScreenColourInformation :: ColourType OnScreenColours -> ColourInformation OnScreenColours
- restrictedICCProfileColourInformation :: ColourType RestrictedICCProfile -> ColourInformation RestrictedICCProfile
- unrestrictedICCProfileColourInformation :: ColourType UnrestrictedICCProfile -> ColourInformation UnrestrictedICCProfile
- data SomeColourInformation where
- SomeColourInformation :: forall profile. IsBoxContent (ColourInformation profile) => ColourInformation profile -> SomeColourInformation
- newtype ColourInformation profile where
- ColourInformation :: (Constant (U32Text "colour_type") (ColourTypeCode profile) :+ ColourType profile) -> ColourInformation profile
- data ColourTypeProfile
- type family ColourType (p :: ColourTypeProfile) where ...
- data FullRangeFlag
- type family ColourTypeCode (p :: ColourTypeProfile) :: Symbol where ...
Documentation
visualSampleEntry :: KnownSymbol (BoxTypeSymbol (SampleEntry VideoTrack (VideoCoding codec))) => VideoCoding codec -> U16 "data_reference_index" -> SampleEntry VideoTrack (VideoCoding codec) -> Box (SampleEntry VideoTrack (VideoCoding codec)) Source #
Construct a visual sample entry box
data family VideoCoding (c :: Symbol) Source #
A coproduct of video codec types
Instances
| Default (SampleEntry * VideoTrack (VideoCoding c)) Source # | |
| IsBoxContent (SampleEntry * VideoTrack (VideoCoding c)) Source # | |
| data VideoCoding "mp4v" Source # | Simple default MPEG-4 video |
| data SampleEntry * VideoTrack (VideoCoding c) Source # | Fields if visual sample entries.
A |
| type BoxTypeSymbol * (VideoCoding c) Source # | |
Clean Aperture sub box
cleanAperture :: CleanAperture -> Box CleanAperture Source #
Construct a CleanAperture (sub-) Box
newtype CleanAperture where Source #
The clean aperture settings
Constructors
| CleanAperture :: (U32 "cleanApertureWidthN" :+ (U32 "cleanApertureWidthD" :+ (U32 "cleanApertureHeightN" :+ (U32 "cleanApertureHeightD" :+ (U32 "horizOffN" :+ (U32 "horizOffD" :+ (U32 "vertOffN" :+ U32 "vertOffD"))))))) -> CleanAperture |
Instances
Pixel aspect ratio sub box
pixelAspectRatio :: PixelAspectRatio -> Box PixelAspectRatio Source #
Construct a PixelAspectRatio (sub-) Box
newtype PixelAspectRatio where Source #
The pixel aspect ratio.
Constructors
| PixelAspectRatio :: (U32 "hSpacing" :+ U32 "vSpacing") -> PixelAspectRatio |
Colour information sub box
colourInformation :: ColourType p -> ColourInformation p Source #
Construct a ColourInformation (sub-) Box
onScreenColourInformation :: ColourType OnScreenColours -> ColourInformation OnScreenColours Source #
Construct a ColourInformation (sub-) Box from OnScreenColours
restrictedICCProfileColourInformation :: ColourType RestrictedICCProfile -> ColourInformation RestrictedICCProfile Source #
Construct a ColourInformation (sub-) Box from RestrictedICCProfile
unrestrictedICCProfileColourInformation :: ColourType UnrestrictedICCProfile -> ColourInformation UnrestrictedICCProfile Source #
Construct a ColourInformation (sub-) Box from UnrestrictedICCProfile
data SomeColourInformation where Source #
A wrapper that hides the concrete ColourTypeProfile of a
ColourInformation.
Constructors
| SomeColourInformation :: forall profile. IsBoxContent (ColourInformation profile) => ColourInformation profile -> SomeColourInformation |
newtype ColourInformation profile where Source #
Profile dependent colour information
Constructors
| ColourInformation :: (Constant (U32Text "colour_type") (ColourTypeCode profile) :+ ColourType profile) -> ColourInformation profile |
Instances
| Default (ColourType profile) => Default (ColourInformation profile) Source # | |
| (KnownSymbol (ColourTypeCode profile), IsBoxContent (ColourType profile)) => IsBoxContent (ColourInformation profile) Source # | |
data ColourTypeProfile Source #
Colour type profiles
Constructors
| OnScreenColours | PTM_COLOR_INFO from A.7.2 of ISO/IEC 29199-2, mind the full range flag. |
| RestrictedICCProfile | A restricted ICC.1 (2010) profile |
| UnrestrictedICCProfile | An unrestricted IEC ISO-15076 part 1, ICC.1 (2010) profile |
type family ColourType (p :: ColourTypeProfile) where ... Source #
Profile dependent colour information family
Equations
| ColourType OnScreenColours = U16 "colour_primaries" :+ (U16 "transfer_characteristics" :+ (U16 "matrix_coefficients" :+ FullRangeFlag)) | |
| ColourType RestrictedICCProfile = Text | |
| ColourType UnrestrictedICCProfile = Text |
data FullRangeFlag Source #
The full range flag, note the different bit layout compared to PTM_COLOR_INFO in ISO 29199-2.
Constructors
| IsFullRange | |
| IsNotFullRange |
Instances
type family ColourTypeCode (p :: ColourTypeProfile) :: Symbol where ... Source #
Return the color type four letter code for a ColourTypeProfile.
Equations
| ColourTypeCode OnScreenColours = "nclx" | |
| ColourTypeCode RestrictedICCProfile = "rICC" | |
| ColourTypeCode UnrestrictedICCProfile = "prof" |