Searched defs:nalStart (Results 1 - 5 of 5) sorted by relevance
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
H A D | NuPlayerCCDecoder.cpp | 212 int64_t timeUs, const uint8_t *nalStart, size_t nalSize) { 213 unsigned nalType = nalStart[0] & 0x1f; 221 NALBitReader br(nalStart + 1, nalSize - 1); 211 parseSEINalUnit( int64_t timeUs, const uint8_t *nalStart, size_t nalSize) argument
|
/frameworks/av/media/libstagefright/ |
H A D | avc_utils.cpp | 232 const uint8_t **nalStart, size_t *nalSize, 237 *nalStart = NULL; 288 *nalStart = &data[startOffset]; 303 const uint8_t *nalStart; local 305 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) { 306 if ((nalStart[0] & 0x1f) == nalType) { 308 memcpy(buffer->data(), nalStart, nalSize); 429 const uint8_t *nalStart; local 431 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) { 434 unsigned nalType = nalStart[ 230 getNextNALUnit( const uint8_t **_data, size_t *_size, const uint8_t **nalStart, size_t *nalSize, bool startCodeFollows) argument 449 const uint8_t *nalStart; local [all...] |
H A D | MediaCodec.cpp | 2766 const uint8_t *nalStart; local 2768 while (getNextNALUnit(&data, &size, &nalStart, &nalSize, true) == OK) { 2771 memcpy(csd->data() + 4, nalStart, nalSize);
|
/frameworks/av/media/libstagefright/wifi-display/rtp/ |
H A D | RTPSender.cpp | 323 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 D | ESQueue.cpp | 798 const uint8_t *nalStart; local 802 while ((err = getNextNALUnit(&data, &size, &nalStart, &nalSize)) == OK) { 805 unsigned nalType = nalStart[0] & 0x1f; 813 ABitReader br(nalStart + 1, nalSize); 918 pos.nalOffset = nalStart - mBuffer->data();
|
Completed in 52 milliseconds