Methods Summary |
---|
public void | _parseDetails(java.nio.ByteBuffer content)
this.avcDecoderConfigurationRecord = new AvcConfigurationBox.AVCDecoderConfigurationRecord(content);
|
public AvcConfigurationBox.AVCDecoderConfigurationRecord | getAvcDecoderConfigurationRecord()
return avcDecoderConfigurationRecord;
|
protected void | getContent(java.nio.ByteBuffer byteBuffer)
this.avcDecoderConfigurationRecord.getContent(byteBuffer);
|
protected long | getContentSize()
return avcDecoderConfigurationRecord.getContentSize();
|
public int | getLengthSizeMinusOne()
return avcDecoderConfigurationRecord.lengthSizeMinusOne;
|
public java.lang.String[] | getPPS()
return avcDecoderConfigurationRecord.getPPS();
|
public java.util.List | getPictureParameterSetsAsStrings()
return avcDecoderConfigurationRecord.getPictureParameterSetsAsStrings();
|
public java.lang.String[] | getSPS()
return avcDecoderConfigurationRecord.getSPS();
|
public java.util.List | getSequenceParameterSetExtsAsStrings()
return avcDecoderConfigurationRecord.getSequenceParameterSetExtsAsStrings();
|
public java.util.List | getSequenceParameterSetsAsStrings()
return avcDecoderConfigurationRecord.getSequenceParameterSetsAsStrings();
|
public java.lang.String | toString()
return "AvcNalUnitStorageBox{" +
"SPS=" + avcDecoderConfigurationRecord.getSequenceParameterSetsAsStrings() +
",PPS=" + avcDecoderConfigurationRecord.getPictureParameterSetsAsStrings() +
",lengthSize=" + (avcDecoderConfigurationRecord.lengthSizeMinusOne + 1) +
'}";
|