Home
last modified time | relevance | path

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

/external/fonttools/Lib/fontTools/ttLib/tables/
D_c_m_a_p.py552 def splitRange(startCode, endCode, cmap): argument
557 if startCode == endCode:
560 lastID = cmap[startCode]
561 lastCode = startCode
567 for code in range(startCode + 1, endCode + 1):
592 if b == startCode and e == endCode:
594 if b == startCode or e == endCode:
605 if subRanges[0][0] != startCode:
606 subRanges.insert(0, (startCode, subRanges[0][0] - 1))
657 startCode = allCodes[:segCount]
[all …]
/external/webrtc/webrtc/modules/video_coding/
Dsession_info.cc217 const unsigned char startCode[] = {0, 0, 0, 1}; in Insert() local
218 memcpy(frame_buffer, startCode, kH264StartCodeLengthBytes); in Insert()
Djitter_buffer_unittest.cc237 bool startCode) { in CheckOutFrame() argument
243 if (startCode) { in CheckOutFrame()
256 } else if (startCode && outData[i] == 0 && outData[i + 1] == 0) { in CheckOutFrame()