HomeSort by relevance Sort by last modified time
    Searched refs:nalStart (Results 1 - 3 of 3) sorted by null

  /frameworks/base/media/libstagefright/
avc_utils.cpp 136 const uint8_t **nalStart, size_t *nalSize,
141 *nalStart = NULL;
195 *nalStart = &data[startOffset];
212 const uint8_t *nalStart;
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;
318 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
321 unsigned nalType = nalStart[0] & 0x1f
    [all...]
  /frameworks/base/media/libstagefright/include/
avc_utils.h 46 const uint8_t **nalStart, size_t *nalSize,
  /frameworks/base/media/libstagefright/mpeg2ts/
ESQueue.cpp 468 const uint8_t *nalStart;
471 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
474 unsigned nalType = nalStart[0] & 0x1f;
479 ABitReader br(nalStart + 1, nalSize);
556 pos.nalOffset = nalStart - mBuffer->data();

Completed in 123 milliseconds