Searched refs:max_payload_len (Results 1 – 8 of 8) sorted by relevance
/external/webrtc/webrtc/modules/rtp_rtcp/source/ |
D | rtp_format.cc | 20 size_t max_payload_len, in Create() argument 25 return new RtpPacketizerH264(frame_type, max_payload_len); in Create() 28 return new RtpPacketizerVp8(rtp_type_header->VP8, max_payload_len); in Create() 31 return new RtpPacketizerVp9(rtp_type_header->VP9, max_payload_len); in Create() 33 return new RtpPacketizerGeneric(frame_type, max_payload_len); in Create()
|
D | rtp_format_vp8.cc | 151 size_t max_payload_len, in RtpPacketizerVp8() argument 161 max_payload_len_(max_payload_len), in RtpPacketizerVp8() 166 size_t max_payload_len) in RtpPacketizerVp8() argument 176 max_payload_len_(max_payload_len), in RtpPacketizerVp8() 253 size_t RtpPacketizerVp8::CalcNextSize(size_t max_payload_len, in CalcNextSize() argument 256 if (max_payload_len == 0 || remaining_bytes == 0) { in CalcNextSize() 260 return max_payload_len >= remaining_bytes ? remaining_bytes : 0; in CalcNextSize() 267 size_t num_frags = remaining_bytes / max_payload_len + 1; in CalcNextSize() 272 return max_payload_len >= remaining_bytes ? remaining_bytes in CalcNextSize() 273 : max_payload_len; in CalcNextSize() [all …]
|
D | rtp_format_vp8.h | 54 size_t max_payload_len, 59 RtpPacketizerVp8(const RTPVideoHeaderVP8& hdr_info, size_t max_payload_len); 117 size_t CalcNextSize(size_t max_payload_len,
|
D | rtp_format_video_generic.cc | 22 size_t max_payload_len) in RtpPacketizerGeneric() argument 25 max_payload_len_(max_payload_len - kGenericHeaderLength), in RtpPacketizerGeneric()
|
D | rtp_format.h | 25 size_t max_payload_len,
|
D | rtp_format_video_generic.h | 29 RtpPacketizerGeneric(FrameType frametype, size_t max_payload_len);
|
D | rtp_format_h264.h | 25 RtpPacketizerH264(FrameType frame_type, size_t max_payload_len);
|
D | rtp_format_h264.cc | 153 size_t max_payload_len) in RtpPacketizerH264() argument 156 max_payload_len_(max_payload_len) { in RtpPacketizerH264()
|