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

/frameworks/av/media/libstagefright/
H A Davc_utils.cpp136 const uint8_t **nalStart, size_t *nalSize,
141 *nalStart = NULL;
195 *nalStart = &data[startOffset];
212 const uint8_t *nalStart; local
214 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
215 if ((nalStart[0] & 0x1f) == nalType) {
217 memcpy(buffer->data(), nalStart, nalSize);
316 const uint8_t *nalStart; local
318 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
321 unsigned nalType = nalStart[
134 getNextNALUnit( const uint8_t **_data, size_t *_size, const uint8_t **nalStart, size_t *nalSize, bool startCodeFollows) argument
336 const uint8_t *nalStart; local
[all...]
/frameworks/av/media/libstagefright/include/
H A Davc_utils.h46 const uint8_t **nalStart, size_t *nalSize,
/frameworks/av/media/libstagefright/mpeg2ts/
H A DESQueue.cpp535 const uint8_t *nalStart; local
538 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
541 unsigned nalType = nalStart[0] & 0x1f;
546 ABitReader br(nalStart + 1, nalSize);
623 pos.nalOffset = nalStart - mBuffer->data();

Completed in 296 milliseconds