Searched defs:nalStart (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/
H A Davc_utils.cpp181 const uint8_t **nalStart, size_t *nalSize,
186 *nalStart = NULL;
240 *nalStart = &data[startOffset];
257 const uint8_t *nalStart; local
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; local
386 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
389 unsigned nalType = nalStart[
179 getNextNALUnit( const uint8_t **_data, size_t *_size, const uint8_t **nalStart, size_t *nalSize, bool startCodeFollows) argument
404 const uint8_t *nalStart; local
[all...]
H A DMediaCodec.cpp1790 const uint8_t *nalStart; local
1792 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
1795 memcpy(csd->data() + 4, nalStart, nalSize);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp543 const uint8_t *nalStart; local
546 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
549 unsigned nalType = nalStart[0] & 0x1f;
554 ABitReader br(nalStart + 1, nalSize);
631 pos.nalOffset = nalStart - mBuffer->data();
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp325 const uint8_t *nalStart; local
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);

Completed in 150 milliseconds