/external/webrtc/call/ |
D | rtp_payload_params.cc | 153 RTPVideoHeader rtp_video_header; in GetRtpVideoHeader() local 156 &rtp_video_header); in GetRtpVideoHeader() 158 rtp_video_header.frame_type = image._frameType, in GetRtpVideoHeader() 159 rtp_video_header.rotation = image.rotation_; in GetRtpVideoHeader() 160 rtp_video_header.content_type = image.content_type_; in GetRtpVideoHeader() 161 rtp_video_header.playout_delay = image.playout_delay_; in GetRtpVideoHeader() 162 rtp_video_header.width = image._encodedWidth; in GetRtpVideoHeader() 163 rtp_video_header.height = image._encodedHeight; in GetRtpVideoHeader() 164 rtp_video_header.color_space = image.ColorSpace() in GetRtpVideoHeader() 167 SetVideoTiming(image, &rtp_video_header.video_timing); in GetRtpVideoHeader() [all …]
|
D | rtp_payload_params.h | 49 void SetCodecSpecific(RTPVideoHeader* rtp_video_header, 58 RTPVideoHeader* rtp_video_header); 63 RTPVideoHeader* rtp_video_header); 68 RTPVideoHeader* rtp_video_header); 72 RTPVideoHeader* rtp_video_header);
|
D | BUILD.gn | 169 "../modules/rtp_rtcp:rtp_video_header",
|
/external/webrtc/modules/rtp_rtcp/source/ |
D | rtp_format_video_generic_unittest.cc | 77 RTPVideoHeader rtp_video_header; in TEST() local 78 rtp_video_header.video_type_header.emplace<RTPVideoHeaderLegacyGeneric>() in TEST() 80 rtp_video_header.frame_type = VideoFrameType::kVideoFrameKey; in TEST() 81 RtpPacketizerGeneric packetizer(kPayload, kNoSizeLimits, rtp_video_header); in TEST() 100 RTPVideoHeader rtp_video_header; in TEST() local 101 rtp_video_header.video_type_header.emplace<RTPVideoHeaderLegacyGeneric>() in TEST() 103 RtpPacketizerGeneric packetizer(kPayload, limits, rtp_video_header); in TEST() 116 RTPVideoHeader rtp_video_header; in TEST() local 117 rtp_video_header.video_type_header.emplace<RTPVideoHeaderLegacyGeneric>() in TEST() 119 RtpPacketizerGeneric packetizer(kPayload, limits, rtp_video_header); in TEST() [all …]
|
D | rtp_descriptor_authentication.cc | 23 const RTPVideoHeader& rtp_video_header) { in RtpDescriptorAuthentication() argument 24 if (!rtp_video_header.generic) { in RtpDescriptorAuthentication() 28 *rtp_video_header.generic; in RtpDescriptorAuthentication() 49 frame_descriptor.SetResolution(rtp_video_header.width, in RtpDescriptorAuthentication() 50 rtp_video_header.height); in RtpDescriptorAuthentication()
|
D | rtp_format.cc | 33 const RTPVideoHeader& rtp_video_header) { in Create() argument 42 absl::get<RTPVideoHeaderH264>(rtp_video_header.video_type_header); in Create() 48 absl::get<RTPVideoHeaderVP8>(rtp_video_header.video_type_header); in Create() 53 absl::get<RTPVideoHeaderVP9>(rtp_video_header.video_type_header); in Create() 58 rtp_video_header.frame_type); in Create() 61 rtp_video_header); in Create()
|
D | rtp_format_video_generic.cc | 29 const RTPVideoHeader& rtp_video_header) in RtpPacketizerGeneric() argument 31 BuildHeader(rtp_video_header); in RtpPacketizerGeneric() 84 void RtpPacketizerGeneric::BuildHeader(const RTPVideoHeader& rtp_video_header) { in BuildHeader() argument 87 if (rtp_video_header.frame_type == VideoFrameType::kVideoFrameKey) { in BuildHeader() 91 &rtp_video_header.video_type_header)) { in BuildHeader()
|
D | rtp_rtcp_impl_unittest.cc | 212 RTPVideoHeader rtp_video_header; in SendFrame() local 213 rtp_video_header.frame_type = VideoFrameType::kVideoFrameKey; in SendFrame() 214 rtp_video_header.width = codec_.width; in SendFrame() 215 rtp_video_header.height = codec_.height; in SendFrame() 216 rtp_video_header.rotation = kVideoRotation_0; in SendFrame() 217 rtp_video_header.content_type = VideoContentType::UNSPECIFIED; in SendFrame() 218 rtp_video_header.playout_delay = {-1, -1}; in SendFrame() 219 rtp_video_header.is_first_packet_in_frame = true; in SendFrame() 220 rtp_video_header.simulcastIdx = 0; in SendFrame() 221 rtp_video_header.codec = kVideoCodecVP8; in SendFrame() [all …]
|
D | rtp_rtcp_impl2_unittest.cc | 223 RTPVideoHeader rtp_video_header; in SendFrame() local 224 rtp_video_header.frame_type = VideoFrameType::kVideoFrameKey; in SendFrame() 225 rtp_video_header.width = codec_.width; in SendFrame() 226 rtp_video_header.height = codec_.height; in SendFrame() 227 rtp_video_header.rotation = kVideoRotation_0; in SendFrame() 228 rtp_video_header.content_type = VideoContentType::UNSPECIFIED; in SendFrame() 229 rtp_video_header.playout_delay = {-1, -1}; in SendFrame() 230 rtp_video_header.is_first_packet_in_frame = true; in SendFrame() 231 rtp_video_header.simulcastIdx = 0; in SendFrame() 232 rtp_video_header.codec = kVideoCodecVP8; in SendFrame() [all …]
|
D | rtp_format_video_generic.h | 41 const RTPVideoHeader& rtp_video_header); 60 void BuildHeader(const RTPVideoHeader& rtp_video_header);
|
D | rtp_descriptor_authentication.h | 23 const RTPVideoHeader& rtp_video_header);
|
D | rtp_format.h | 43 const RTPVideoHeader& rtp_video_header);
|
/external/webrtc/video/ |
D | buffered_frame_decryptor_unittest.cc | 60 RTPVideoHeader rtp_video_header; in CreateRtpFrameObject() local 61 rtp_video_header.generic.emplace(); in CreateRtpFrameObject() 78 rtp_video_header, in CreateRtpFrameObject()
|
D | BUILD.gn | 108 "../modules/rtp_rtcp:rtp_video_header",
|
/external/webrtc/api/video/ |
D | BUILD.gn | 279 "../../modules/rtp_rtcp:rtp_video_header", 337 "../../modules/rtp_rtcp:rtp_video_header",
|
/external/webrtc/modules/rtp_rtcp/ |
D | BUILD.gn | 249 ":rtp_video_header", 353 rtc_library("rtp_video_header") { 356 "source/rtp_video_header.cc", 357 "source/rtp_video_header.h",
|
/external/webrtc/modules/video_coding/ |
D | BUILD.gn | 27 "../../modules/rtp_rtcp:rtp_video_header", 117 "../rtp_rtcp:rtp_video_header", 278 "../../modules/rtp_rtcp:rtp_video_header", 287 "../rtp_rtcp:rtp_video_header", 1022 "../rtp_rtcp:rtp_video_header",
|
/external/webrtc/test/fuzzers/ |
D | BUILD.gn | 85 "../../modules/rtp_rtcp:rtp_video_header", 94 "../../modules/rtp_rtcp:rtp_video_header",
|
/external/webrtc/test/ |
D | BUILD.gn | 862 "../modules/rtp_rtcp:rtp_video_header",
|
/external/webrtc/ |
D | Android.bp | 2303 "modules/rtp_rtcp/source/rtp_video_header.cc",
|
/external/webrtc/android_tools/ |
D | sorted_targets.txt | 41669 "name": "//modules/rtp_rtcp:rtp_video_header", 41680 "//modules/rtp_rtcp/source/rtp_video_header.cc": [ 41681 "obj/modules/rtp_rtcp/rtp_video_header/rtp_video_header.o" 41685 "//modules/rtp_rtcp/source/rtp_video_header.cc", 41686 "//modules/rtp_rtcp/source/rtp_video_header.h" 53624 "//modules/rtp_rtcp:rtp_video_header", 62700 "//modules/rtp_rtcp:rtp_video_header", 70898 "//modules/rtp_rtcp:rtp_video_header", 71214 "//modules/rtp_rtcp:rtp_video_header", 74140 "//modules/rtp_rtcp:rtp_video_header",
|