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

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
rtp_format_vp8.cc 289 size_t packet_bytes = 0; // How much data to send in this packet. local
301 packet_bytes += next_size;
327 assert(packet_bytes > 0);
330 packet_bytes,
333 total_bytes_processed += packet_bytes;
364 const size_t packet_bytes = local
367 const size_t this_packet_bytes = packet_bytes < remaining_partition
368 ? packet_bytes
rtp_format_vp9.cc 534 size_t packet_bytes = CalcNextSize(rem_payload_len, rem_bytes); local
535 if (packet_bytes == 0) {
541 QueuePacket(bytes_processed, packet_bytes, bytes_processed == 0,
542 rem_bytes == packet_bytes, &packets_);
543 bytes_processed += packet_bytes;

Completed in 101 milliseconds