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

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/write/
BitstreamWriter.java 36 private int[] curByte = new int[8];
50 curByte[i] = 0;
57 int toWrite = (curByte[0] << 7) | (curByte[1] << 6) | (curByte[2] << 5)
58 | (curByte[3] << 4) | (curByte[4] << 3) | (curByte[5] << 2)
59 | (curByte[6] << 1) | curByte[7]
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/read/
BitstreamReader.java 35 private int curByte;
44 curByte = is.read();
56 if (curByte == -1) {
60 int res = (curByte >> (7 - nBit)) & 1;
89 curByte = nextByte;
104 int res = curByte;
122 boolean hasTail = (curByte & mask) == tail;
124 return !(curByte == -1 || (nextByte == -1 && hasTail));
150 if (curByte == -1) {
158 bits[cnt++] = (curByte >> (7 - i)) & 0x1
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/H264/
h264_information.cc 435 uint32_t curByte = _info.startCodeSize[_info.numNALUs] + 1;
436 const uint32_t seiStartOffset = curByte;
439 while(_ptrData[curByte] == 0xff)
442 curByte++;
444 seiPayloadType += _ptrData[curByte++];
446 while(_ptrData[curByte] == 0xff)
449 curByte++;
451 seiPayloadSize += _ptrData[curByte++];
482 BitstreamParser parserScalabilityInfo(_ptrData+curByte, seiPayloadSize);
689 uint32_t curByte = _info.startCodeSize[_info.numNALUs] + 1
    [all...]
rtp_sender_h264.cc 75 int32_t& curByte) const
96 databuffer[curByte++] = (svc.r << 7) + (svc.idr << 6) + (svc.priorityID & 0x3F);
97 databuffer[curByte++] = (svc.interLayerPred << 7) + (svc.dependencyID << 4) + (svc.qualityID & 0x0F);
98 databuffer[curByte++] = (svc.temporalID << 5) + (svc.useRefBasePic << 4) + (svc.discardable << 3) +
110 int32_t& curByte) const
147 int32_t startByte = curByte;
150 databuffer[curByte++] = 30; // NRI will be added later
153 AddH264SVCNALUHeader(svc, databuffer, curByte);
156 databuffer[curByte++] = (pacsi.X << 7) +
168 databuffer[curByte++] = pacsi.TL0picIDx
    [all...]
rtp_sender_h264.h 79 int32_t& curByte) const;
162 int32_t& curByte) const;
  /external/fonttools/Lib/fontTools/ttLib/tables/
E_B_D_T_.py 205 for curByte in data:
206 value = byteord(curByte)
221 curByte = 0
223 curByte = curByte << 1
225 curByte |= 1
226 byteList.append(bytechr(curByte))
527 curByte = _reverseBytes(self.imageData[firstByteLoc])
528 firstHalf = byteord(curByte) >> cutPoint
532 curByte = _reverseBytes(self.imageData[secondByteLoc]
    [all...]
  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeaderParser.java 391 int curByte = 0;
393 curByte = (rawData.get() & 0xFF);
397 return curByte;
GifDecoder.java 549 int curByte = 0;
551 curByte = (rawData.get() & 0xFF);
555 return curByte;
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 936 Byte curByte, matchByte;
998 curByte = *data;
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1015 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1016 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1024 if (matchByte == curByte)
1129 Byte curByte, matchByte;
1218 curByte = *data;
1228 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1229 LitEnc_GetPrice(probs, curByte, p->ProbPrices))
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 937 Byte curByte, matchByte;
999 curByte = *data;
1002 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1016 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1017 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1025 if (matchByte == curByte)
1130 Byte curByte, matchByte;
1219 curByte = *data;
1229 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1230 LitEnc_GetPrice(probs, curByte, p->ProbPrices))
    [all...]
  /external/lzma/C/
LzmaEnc.c 936 Byte curByte, matchByte;
998 curByte = *data;
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1015 LitEnc_GetPriceMatched(probs, curByte, matchByte, p->ProbPrices) :
1016 LitEnc_GetPrice(probs, curByte, p->ProbPrices));
1024 if (matchByte == curByte)
1129 Byte curByte, matchByte;
1218 curByte = *data;
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java     [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs     [all...]

Completed in 401 milliseconds