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

  /frameworks/av/media/libstagefright/
avc_utils.cpp 217 const uint8_t **nalStart, size_t *nalSize,
222 *nalStart = NULL;
276 *nalStart = &data[startOffset];
291 const uint8_t *nalStart;
293 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
294 if ((nalStart[0] & 0x1f) == nalType) {
296 memcpy(buffer->data(), nalStart, nalSize);
417 const uint8_t *nalStart;
419 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
422 unsigned nalType = nalStart[0] & 0x1f
    [all...]
MediaCodec.cpp     [all...]
  /frameworks/av/media/libstagefright/include/
avc_utils.h 49 const uint8_t **nalStart, size_t *nalSize,
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 325 const uint8_t *nalStart;
328 &data, &size, &nalStart, &nalSize,
344 memcpy(out->data() + outBytesUsed, nalStart, nalSize);
371 memcpy(dst, nalStart, nalSize);
382 uint8_t nalType = nalStart[0] & 0x1f;
383 uint8_t nri = (nalStart[0] >> 5) & 3;
405 memcpy(&dst[2], nalStart + srcOffset, copy);
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 778 const uint8_t *nalStart;
781 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
784 unsigned nalType = nalStart[0] & 0x1f;
789 ABitReader br(nalStart + 1, nalSize);
874 pos.nalOffset = nalStart - mBuffer->data();
    [all...]

Completed in 171 milliseconds