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

  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 323 const uint8_t *nalStart;
326 &data, &size, &nalStart, &nalSize,
342 memcpy(out->data() + outBytesUsed, nalStart, nalSize);
369 memcpy(dst, nalStart, nalSize);
380 uint8_t nalType = nalStart[0] & 0x1f;
381 uint8_t nri = (nalStart[0] >> 5) & 3;
403 memcpy(&dst[2], nalStart + srcOffset, copy);
  /frameworks/av/media/libstagefright/
avc_utils.cpp 259 const uint8_t **nalStart, size_t *nalSize,
264 *nalStart = NULL;
315 *nalStart = &data[startOffset];
330 const uint8_t *nalStart;
332 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
333 if ((nalStart[0] & 0x1f) == nalType) {
335 memcpy(buffer->data(), nalStart, nalSize);
456 const uint8_t *nalStart;
458 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
461 unsigned nalType = nalStart[0] & 0x1f
    [all...]
MediaCodec.cpp     [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 799 const uint8_t *nalStart;
803 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
806 unsigned nalType = nalStart[0] & 0x1f;
814 ABitReader br(nalStart + 1, nalSize);
919 pos.nalOffset = nalStart - mBuffer->data();
    [all...]

Completed in 454 milliseconds