Searched defs:nal (Results 1 - 4 of 4) sorted by relevance

/frameworks/av/media/libstagefright/rtsp/
H A DARTPAssembler.cpp88 sp<ABuffer> nal = *it; local
95 unsigned frameLength = nal->size() + 7;
112 memcpy(dst + 7, nal->data(), nal->size());
113 offset += nal->size() + 7;
134 sp<ABuffer> nal = *it; local
135 memcpy(accessUnit->data() + offset, nal->data(), nal->size());
136 offset += nal->size();
H A DAAVCAssembler.cpp110 ALOGV("Ignoring undefined nal type.");
320 ALOGV("Access unit complete (%zu nal units)", mNALUnits.size());
335 sp<ABuffer> nal = *it; local
336 memcpy(accessUnit->data() + offset, nal->data(), nal->size());
337 offset += nal->size();
H A DAPacketSource.cpp136 sp<ABuffer> nal = decodeBase64(nalString); local
137 CHECK(nal != NULL);
138 CHECK_GT(nal->size(), 0u);
139 CHECK_LE(nal->size(), 65535u);
141 uint8_t nalType = nal->data()[0] & 0x1f;
149 totalSeqParameterSetSize += nal->size();
153 totalPicParameterSetSize += nal->size();
156 paramSets.push(nal);
190 sp<ABuffer> nal = paramSets.editItemAt(i); local
192 *out++ = nal
208 sp<ABuffer> nal = paramSets.editItemAt(i + numSeqParameterSets); local
[all...]
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DNuPlayerCCDecoder.cpp221 const NALPosition *nal = (NALPosition *)sei->data(); local
223 for (size_t i = 0; i < sei->size() / sizeof(NALPosition); ++i, ++nal) {
225 timeUs, accessUnit->data() + nal->nalOffset, nal->nalSize);

Completed in 79 milliseconds