Searched refs:avcConfigurationBox (Results 1 - 3 of 3) sorted by relevance

/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/basemediaformat/
H A DAvcNalUnitStorageBox.java40 public AvcNalUnitStorageBox(AvcConfigurationBox avcConfigurationBox) { argument
42 this.avcDecoderConfigurationRecord = avcConfigurationBox.getavcDecoderConfigurationRecord();
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/
H A DH264TrackImpl.java106 AvcConfigurationBox avcConfigurationBox = new AvcConfigurationBox();
108 avcConfigurationBox.setSequenceParameterSets(seqParameterSetList);
109 avcConfigurationBox.setPictureParameterSets(pictureParameterSetList);
110 avcConfigurationBox.setAvcLevelIndication(seqParameterSet.level_idc);
111 avcConfigurationBox.setAvcProfileIndication(seqParameterSet.profile_idc);
112 avcConfigurationBox.setBitDepthLumaMinus8(seqParameterSet.bit_depth_luma_minus8);
113 avcConfigurationBox.setBitDepthChromaMinus8(seqParameterSet.bit_depth_chroma_minus8);
114 avcConfigurationBox.setChromaFormat(seqParameterSet.chroma_format_idc.getId());
115 avcConfigurationBox.setConfigurationVersion(1);
116 avcConfigurationBox
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/adaptivestreaming/
H A DFlatManifestWriterImpl.java566 AvcConfigurationBox avcConfigurationBox = vse.getBoxes(AvcConfigurationBox.class).get(0);
569 l.codecPrivateData = Hex.encodeHex(getAvcCodecPrivateData(avcConfigurationBox));
573 l.nalLength = avcConfigurationBox.getLengthSizeMinusOne() + 1;
580 private byte[] getAvcCodecPrivateData(AvcConfigurationBox avcConfigurationBox) { argument
581 List<byte[]> sps = avcConfigurationBox.getSequenceParameterSets();
582 List<byte[]> pps = avcConfigurationBox.getPictureParameterSets();

Completed in 391 milliseconds