Searched refs:nalStart (Results 1 - 7 of 7) sorted by relevance

/frameworks/av/media/libstagefright/
H A Davc_utils.cpp259 const uint8_t **nalStart, size_t *nalSize,
264 *nalStart = NULL;
315 *nalStart = &data[startOffset];
330 const uint8_t *nalStart; local
332 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
333 if ((nalStart[0] & 0x1f) == nalType) {
335 memcpy(buffer->data(), nalStart, nalSize);
457 const uint8_t *nalStart; local
459 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
465 unsigned nalType = nalStart[
257 getNextNALUnit( const uint8_t **_data, size_t *_size, const uint8_t **nalStart, size_t *nalSize, bool startCodeFollows) argument
492 const uint8_t *nalStart; local
[all...]
H A DMediaCodec.cpp3126 const uint8_t *nalStart; local
3128 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
3131 memcpy(csd->data() + 4, nalStart, nalSize);
/frameworks/av/include/media/stagefright/
H A Davc_utils.h81 const uint8_t **nalStart, size_t *nalSize,
/frameworks/av/media/libstagefright/foundation/include/
H A Davc_utils.h81 const uint8_t **nalStart, size_t *nalSize,
/frameworks/av/media/libstagefright/include/
H A Davc_utils.h81 const uint8_t **nalStart, size_t *nalSize,
/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp323 const uint8_t *nalStart; local
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/mpeg2ts/
H A DESQueue.cpp1028 const uint8_t *nalStart; local
1035 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
1038 unsigned nalType = nalStart[0] & 0x1f;
1047 ABitReader br(nalStart + 1, nalSize);
1184 pos.nalOffset = nalStart - mBuffer->data();

Completed in 601 milliseconds