HomeSort by relevance Sort by last modified time
    Searched refs:AVCDecoderConfigurationRecord (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/media/filters/
h264_to_annex_b_bitstream_converter.h 16 struct AVCDecoderConfigurationRecord;
27 // Parses the global AVCDecoderConfigurationRecord from the file format's
33 // Pointer to buffer containing AVCDecoderConfigurationRecord.
37 // Pointer to place the parsed AVCDecoderConfigurationRecord data into.
46 mp4::AVCDecoderConfigurationRecord* avc_config);
51 const mp4::AVCDecoderConfigurationRecord& avc_config) const;
62 // The AVCDecoderConfigurationRecord that contains the parameter sets that
73 const mp4::AVCDecoderConfigurationRecord* avc_config) const;
76 // AVCDecoderConfigurationRecord from the MP4 headers to bytestream format.
83 // The AVCDecoderConfigurationRecord that contains the parameter sets tha
    [all...]
ffmpeg_h264_to_annex_b_bitstream_converter.cc 23 scoped_ptr<mp4::AVCDecoderConfigurationRecord> avc_config;
33 avc_config.reset(new mp4::AVCDecoderConfigurationRecord());
h264_to_annex_b_bitstream_converter.cc 42 mp4::AVCDecoderConfigurationRecord* avc_config) {
50 // We're done processing the AVCDecoderConfigurationRecord,
58 const mp4::AVCDecoderConfigurationRecord& avc_config) const {
73 const mp4::AVCDecoderConfigurationRecord* avc_config) const {
133 const mp4::AVCDecoderConfigurationRecord& avc_config,
157 const mp4::AVCDecoderConfigurationRecord* avc_config,
h264_to_annex_b_bitstream_converter_unittest.cc 19 mp4::AVCDecoderConfigurationRecord avc_config_;
314 // Simulate 10 sps AVCDecoderConfigurationRecord,
  /external/chromium_org/media/formats/mp4/
avc.h 19 struct AVCDecoderConfigurationRecord;
31 const AVCDecoderConfigurationRecord& avc_config,
36 const AVCDecoderConfigurationRecord& avc_config,
mp4_stream_parser.h 70 bool PrepareAVCBuffer(const AVCDecoderConfigurationRecord& avc_config,
box_definitions.h 154 struct MEDIA_EXPORT AVCDecoderConfigurationRecord : Box {
155 DECLARE_BOX_METHODS(AVCDecoderConfigurationRecord);
157 // Parses AVCDecoderConfigurationRecord data encoded in |data|.
199 AVCDecoderConfigurationRecord avcc;
box_definitions.cc 355 AVCDecoderConfigurationRecord::AVCDecoderConfigurationRecord()
362 AVCDecoderConfigurationRecord::~AVCDecoderConfigurationRecord() {}
363 FourCC AVCDecoderConfigurationRecord::BoxType() const { return FOURCC_AVCC; }
365 bool AVCDecoderConfigurationRecord::Parse(BoxReader* reader) {
369 bool AVCDecoderConfigurationRecord::Parse(const uint8* data, int data_size) {
374 bool AVCDecoderConfigurationRecord::ParseInternal(BufferReader* reader,
avc.cc 76 bool AVC::InsertParamSetsAnnexB(const AVCDecoderConfigurationRecord& avc_config,
135 const AVCDecoderConfigurationRecord& avc_config,
avc_unittest.cc 250 AVCDecoderConfigurationRecord avc_config;
345 AVCDecoderConfigurationRecord avc_config;
mp4_stream_parser.cc 360 const AVCDecoderConfigurationRecord& avc_config,
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/basemediaformat/
AvcNalUnitStorageBox.java 30 * The AVC NAL Unit Storage Box SHALL contain an AVCDecoderConfigurationRecord,
34 AvcConfigurationBox.AVCDecoderConfigurationRecord avcDecoderConfigurationRecord;
42 this.avcDecoderConfigurationRecord = avcConfigurationBox.getavcDecoderConfigurationRecord();
45 public AvcConfigurationBox.AVCDecoderConfigurationRecord getAvcDecoderConfigurationRecord() {
46 return avcDecoderConfigurationRecord;
51 return avcDecoderConfigurationRecord.lengthSizeMinusOne;
55 return avcDecoderConfigurationRecord.getSPS();
59 return avcDecoderConfigurationRecord.getPPS();
63 return avcDecoderConfigurationRecord.getSequenceParameterSetsAsStrings()
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/h264/
AvcConfigurationBox.java 41 public AVCDecoderConfigurationRecord avcDecoderConfigurationRecord = new AVCDecoderConfigurationRecord();
49 return avcDecoderConfigurationRecord.configurationVersion;
53 return avcDecoderConfigurationRecord.avcProfileIndication;
57 return avcDecoderConfigurationRecord.profileCompatibility;
61 return avcDecoderConfigurationRecord.avcLevelIndication;
65 return avcDecoderConfigurationRecord.lengthSizeMinusOne;
69 return Collections.unmodifiableList(avcDecoderConfigurationRecord.sequenceParameterSets);
73 return Collections.unmodifiableList(avcDecoderConfigurationRecord.pictureParameterSets)
    [all...]

Completed in 224 milliseconds