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

  /frameworks/av/media/libstagefright/foundation/
avc_utils.cpp 280 const uint8_t **nalStart, size_t *nalSize,
285 *nalStart = NULL;
336 *nalStart = &data[startOffset];
351 const uint8_t *nalStart;
353 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
354 if (nalSize > 0 && (nalStart[0] & 0x1f) == nalType) {
356 memcpy(buffer->data(), nalStart, nalSize);
470 const uint8_t *nalStart;
472 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) {
478 unsigned nalType = nalStart[0] & 0x1f
    [all...]
  /frameworks/av/media/libstagefright/mpeg2ts/
ESQueue.cpp 1037 const uint8_t *nalStart;
1044 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) {
1047 unsigned nalType = nalStart[0] & 0x1f;
1056 ABitReader br(nalStart + 1, nalSize);
    [all...]
  /frameworks/av/media/libstagefright/
MediaCodec.cpp     [all...]

Completed in 95 milliseconds