Methods Summary |
---|
public void | _parseDetails(java.nio.ByteBuffer content)
avcDecoderConfigurationRecord = new AVCDecoderConfigurationRecord(content);
|
public int | getAvcLevelIndication()
return avcDecoderConfigurationRecord.avcLevelIndication;
|
public int | getAvcProfileIndication()
return avcDecoderConfigurationRecord.avcProfileIndication;
|
public int | getBitDepthChromaMinus8()
return avcDecoderConfigurationRecord.bitDepthChromaMinus8;
|
public int | getBitDepthLumaMinus8()
return avcDecoderConfigurationRecord.bitDepthLumaMinus8;
|
public int | getChromaFormat()
return avcDecoderConfigurationRecord.chromaFormat;
|
public int | getConfigurationVersion()
return avcDecoderConfigurationRecord.configurationVersion;
|
public void | getContent(java.nio.ByteBuffer byteBuffer)
avcDecoderConfigurationRecord.getContent(byteBuffer);
|
public long | getContentSize()
return avcDecoderConfigurationRecord.getContentSize();
|
public int | getLengthSizeMinusOne()
return avcDecoderConfigurationRecord.lengthSizeMinusOne;
|
public java.lang.String[] | getPPS()
return avcDecoderConfigurationRecord.getPPS();
|
public java.util.List | getPictureParameterSets()
return Collections.unmodifiableList(avcDecoderConfigurationRecord.pictureParameterSets);
|
public java.util.List | getPictureParameterSetsAsStrings()
return avcDecoderConfigurationRecord.getPictureParameterSetsAsStrings();
|
public int | getProfileCompatibility()
return avcDecoderConfigurationRecord.profileCompatibility;
|
public java.lang.String[] | getSPS()
return avcDecoderConfigurationRecord.getSPS();
|
public java.util.List | getSequenceParameterSetExts()
return avcDecoderConfigurationRecord.sequenceParameterSetExts;
|
public java.util.List | getSequenceParameterSetExtsAsStrings()
return avcDecoderConfigurationRecord.getSequenceParameterSetExtsAsStrings();
|
public java.util.List | getSequenceParameterSets()
return Collections.unmodifiableList(avcDecoderConfigurationRecord.sequenceParameterSets);
|
public java.util.List | getSequenceParameterSetsAsStrings()
return avcDecoderConfigurationRecord.getSequenceParameterSetsAsStrings();
|
public com.coremedia.iso.boxes.h264.AvcConfigurationBox$AVCDecoderConfigurationRecord | getavcDecoderConfigurationRecord()
return avcDecoderConfigurationRecord;
|
public boolean | hasExts()
return avcDecoderConfigurationRecord.hasExts;
|
public void | setAvcLevelIndication(int avcLevelIndication)
this.avcDecoderConfigurationRecord.avcLevelIndication = avcLevelIndication;
|
public void | setAvcProfileIndication(int avcProfileIndication)
this.avcDecoderConfigurationRecord.avcProfileIndication = avcProfileIndication;
|
public void | setBitDepthChromaMinus8(int bitDepthChromaMinus8)
this.avcDecoderConfigurationRecord.bitDepthChromaMinus8 = bitDepthChromaMinus8;
|
public void | setBitDepthLumaMinus8(int bitDepthLumaMinus8)
this.avcDecoderConfigurationRecord.bitDepthLumaMinus8 = bitDepthLumaMinus8;
|
public void | setChromaFormat(int chromaFormat)
this.avcDecoderConfigurationRecord.chromaFormat = chromaFormat;
|
public void | setConfigurationVersion(int configurationVersion)
this.avcDecoderConfigurationRecord.configurationVersion = configurationVersion;
|
public void | setHasExts(boolean hasExts)
this.avcDecoderConfigurationRecord.hasExts = hasExts;
|
public void | setLengthSizeMinusOne(int lengthSizeMinusOne)
this.avcDecoderConfigurationRecord.lengthSizeMinusOne = lengthSizeMinusOne;
|
public void | setPictureParameterSets(java.util.List pictureParameterSets)
this.avcDecoderConfigurationRecord.pictureParameterSets = pictureParameterSets;
|
public void | setProfileCompatibility(int profileCompatibility)
this.avcDecoderConfigurationRecord.profileCompatibility = profileCompatibility;
|
public void | setSequenceParameterSetExts(java.util.List sequenceParameterSetExts)
this.avcDecoderConfigurationRecord.sequenceParameterSetExts = sequenceParameterSetExts;
|
public void | setSequenceParameterSets(java.util.List sequenceParameterSets)
this.avcDecoderConfigurationRecord.sequenceParameterSets = sequenceParameterSets;
|