Home
last modified time | relevance | path

Searched refs:avcc (Results 1 – 1 of 1) sorted by relevance

/third_party/openh264/module/
Dgmp-openh264.cpp867 const uint8_t* avcc = aCodecSpecific + offsetof(GMPVideoCodecH264, mAVCC.mNumSPS); in InitDecode() local
870 uint8_t spsCount = *avcc++ & kSPSMask; in InitDecode()
872 size_t size = readU16BE(avcc); in InitDecode()
873 avcc += 2; in InitDecode()
874 copyWithStartCode(annexb, avcc, size); in InitDecode()
875 avcc += size; in InitDecode()
878 uint8_t ppsCount = *avcc++; in InitDecode()
880 size_t size = readU16BE(avcc); in InitDecode()
881 avcc += 2; in InitDecode()
882 copyWithStartCode(annexb, avcc, size); in InitDecode()
[all …]