Class SMPTE2086MasteringDisplayMetadataBox

java.lang.Object
org.mp4parser.support.AbstractBox
org.mp4parser.support.AbstractFullBox
org.mp4parser.boxes.webm.SMPTE2086MasteringDisplayMetadataBox
All Implemented Interfaces:
Box, FullBox, ParsableBox

public class SMPTE2086MasteringDisplayMetadataBox extends AbstractFullBox
  • Constructor Details

    • SMPTE2086MasteringDisplayMetadataBox

      public SMPTE2086MasteringDisplayMetadataBox()
  • Method Details

    • getPrimaryRChromaticity_x

      public int getPrimaryRChromaticity_x()
    • setPrimaryRChromaticity_x

      public void setPrimaryRChromaticity_x(int primaryRChromaticity_x)
    • getPrimaryRChromaticity_y

      public int getPrimaryRChromaticity_y()
    • setPrimaryRChromaticity_y

      public void setPrimaryRChromaticity_y(int primaryRChromaticity_y)
    • getPrimaryGChromaticity_x

      public int getPrimaryGChromaticity_x()
    • setPrimaryGChromaticity_x

      public void setPrimaryGChromaticity_x(int primaryGChromaticity_x)
    • getPrimaryGChromaticity_y

      public int getPrimaryGChromaticity_y()
    • setPrimaryGChromaticity_y

      public void setPrimaryGChromaticity_y(int primaryGChromaticity_y)
    • getPrimaryBChromaticity_x

      public int getPrimaryBChromaticity_x()
    • setPrimaryBChromaticity_x

      public void setPrimaryBChromaticity_x(int primaryBChromaticity_x)
    • getPrimaryBChromaticity_y

      public int getPrimaryBChromaticity_y()
    • setPrimaryBChromaticity_y

      public void setPrimaryBChromaticity_y(int primaryBChromaticity_y)
    • getWhitePointChromaticity_x

      public int getWhitePointChromaticity_x()
    • setWhitePointChromaticity_x

      public void setWhitePointChromaticity_x(int whitePointChromaticity_x)
    • getWhitePointChromaticity_y

      public int getWhitePointChromaticity_y()
    • setWhitePointChromaticity_y

      public void setWhitePointChromaticity_y(int whitePointChromaticity_y)
    • getLuminanceMax

      public long getLuminanceMax()
    • setLuminanceMax

      public void setLuminanceMax(long luminanceMax)
    • getLuminanceMin

      public long getLuminanceMin()
    • setLuminanceMin

      public void setLuminanceMin(long luminanceMin)
    • getContentSize

      protected long getContentSize()
      Description copied from class: AbstractBox
      Get the box's content size without its header. This must be the exact number of bytes that getContent(ByteBuffer) writes.
      Specified by:
      getContentSize in class AbstractBox
      Returns:
      Gets the box's content size in bytes
      See Also:
    • getContent

      protected void getContent(ByteBuffer byteBuffer)
      Description copied from class: AbstractBox
      Write the box's content into the given ByteBuffer. This must include flags and version in case of a full box. byteBuffer has been initialized with getSize() bytes.
      Specified by:
      getContent in class AbstractBox
      Parameters:
      byteBuffer - the sink for the box's content
    • _parseDetails

      protected void _parseDetails(ByteBuffer content)
      Description copied from class: AbstractBox
      Parse the box's fields and child boxes if any.
      Specified by:
      _parseDetails in class AbstractBox
      Parameters:
      content - the box's raw content beginning after the 4-cc field.