HomeSort by relevance Sort by last modified time
    Searched full:avc_config (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/media/mp4/
avc.cc 63 const AVCDecoderConfigurationRecord& avc_config,
68 for (size_t i = 0; i < avc_config.sps_list.size(); i++)
69 total_size += avc_config.sps_list[i].size() + kAnnexBStartCodeSize;
70 for (size_t i = 0; i < avc_config.pps_list.size(); i++)
71 total_size += avc_config.pps_list[i].size() + kAnnexBStartCodeSize;
74 for (size_t i = 0; i < avc_config.sps_list.size(); i++) {
77 buffer->insert(buffer->end(), avc_config.sps_list[i].begin(),
78 avc_config.sps_list[i].end());
81 for (size_t i = 0; i < avc_config.pps_list.size(); i++) {
84 buffer->insert(buffer->end(), avc_config.pps_list[i].begin()
    [all...]
avc_unittest.cc 77 AVCDecoderConfigurationRecord avc_config; local
78 avc_config.sps_list.resize(2);
79 avc_config.sps_list[0].push_back(0x67);
80 avc_config.sps_list[0].push_back(0x12);
81 avc_config.sps_list[1].push_back(0x67);
82 avc_config.sps_list[1].push_back(0x34);
83 avc_config.pps_list.resize(1);
84 avc_config.pps_list[0].push_back(0x68);
85 avc_config.pps_list[0].push_back(0x56);
86 avc_config.pps_list[0].push_back(0x78)
    [all...]
avc.h 23 const AVCDecoderConfigurationRecord& avc_config,
mp4_stream_parser.h 68 bool PrepareAVCBuffer(const AVCDecoderConfigurationRecord& avc_config,
mp4_stream_parser.cc 353 const AVCDecoderConfigurationRecord& avc_config,
361 RCHECK(AVC::ConvertFrameToAnnexB(avc_config.length_size, frame_buf));
363 const int nalu_size_diff = 4 - avc_config.length_size;
376 RCHECK(AVC::ConvertConfigToAnnexB(avc_config, &param_sets));

Completed in 6769 milliseconds