Searched defs:outBytesUsed (Results 1 - 1 of 1) sorted by path

/frameworks/av/media/libstagefright/wifi-display/rtp/
H A DRTPSender.cpp319 size_t outBytesUsed = 12; // Placeholder for RTP header. local
329 if (outBytesUsed == 12) {
333 if (outBytesUsed + bytesNeeded > out->capacity()) {
336 if (outBytesUsed == 12
337 && outBytesUsed + nalSize <= out->capacity()) {
342 memcpy(out->data() + outBytesUsed, nalStart, nalSize);
343 outBytesUsed += nalSize;
348 if (outBytesUsed > 12) {
349 out->setRange(0, outBytesUsed);
352 outBytesUsed
[all...]

Completed in 86 milliseconds