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

/frameworks/av/media/libstagefright/
H A Davc_utils.cpp217 const uint8_t **nalStart, size_t *nalSize,
222 *nalStart = NULL;
273 *nalStart = &data[startOffset];
288 const uint8_t *nalStart; local
290 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
291 if ((nalStart[0] & 0x1f) == nalType) {
293 memcpy(buffer->data(), nalStart, nalSize);
414 const uint8_t *nalStart; local
416 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
419 unsigned nalType = nalStart[
215 getNextNALUnit( const uint8_t **_data, size_t *_size, const uint8_t **nalStart, size_t *nalSize, bool startCodeFollows) argument
434 const uint8_t *nalStart; local
[all...]
H A DMediaCodec.cpp2229 const uint8_t *nalStart; local
2231 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
2234 memcpy(csd->data() + 4, nalStart, nalSize);
/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);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp794 const uint8_t *nalStart; local
797 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
800 unsigned nalType = nalStart[0] & 0x1f;
805 ABitReader br(nalStart + 1, nalSize);
890 pos.nalOffset = nalStart - mBuffer->data();

Completed in 119 milliseconds