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

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
BitstreamWriter.java 37 private int curBit;
49 for (int i = curBit; i < 8; i++) {
52 curBit = 0;
70 if (curBit == 8) {
71 curBit = 0;
74 curByte[curBit++] = value;
96 writeNBit(0, 8 - curBit);
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_D_T_.py 222 for curBit in reversed(byteString):
224 if curBit == '1':
517 for curBit in range(*stepRange):
518 endBit = min(curBit+8, bitRange[1])
519 numBits = endBit - curBit
520 cutPoint = curBit % 8
521 firstByteLoc = curBit // 8
526 numBitsCut = endBit - curBit
556 for curBit, curByte in zip(range(*stepRange), data):
557 endBit = min(curBit+8, bitRange[1]
    [all...]

Completed in 200 milliseconds