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 181 const uint8_t **nalStart, size_t *nalSize,
186 *nalStart = NULL;
240 *nalStart = &data[startOffset];
257 const uint8_t *nalStart;
259 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
260 if ((nalStart[0] & 0x1f) == nalType) {
262 memcpy(buffer->data(), nalStart, nalSize);
384 const uint8_t *nalStart;
386 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
389 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 326 const uint8_t *nalStart;
329 &data, &size, &nalStart, &nalSize,
345 memcpy(out->data() + outBytesUsed, nalStart, nalSize);
372 memcpy(dst, nalStart, nalSize);
383 uint8_t nalType = nalStart[0] & 0x1f;
384 uint8_t nri = (nalStart[0] >> 5) & 3;
406 memcpy(&dst[2], nalStart + srcOffset, copy);
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 548 const uint8_t *nalStart;
551 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
554 unsigned nalType = nalStart[0] & 0x1f;
559 ABitReader br(nalStart + 1, nalSize);
636 pos.nalOffset = nalStart - mBuffer->data();

Completed in 1163 milliseconds