Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
audio_receiver/ | 03-May-2024 | - | 1,338 | 1,035 | ||
audio_sender/ | 03-May-2024 | - | 1,052 | 805 | ||
congestion_control/ | 03-May-2024 | - | 371 | 273 | ||
framer/ | 03-May-2024 | - | 1,958 | 1,532 | ||
logging/ | 03-May-2024 | - | 1,420 | 1,080 | ||
net/ | 03-May-2024 | - | 1,969 | 1,418 | ||
rtcp/ | 03-May-2024 | - | 6,120 | 4,763 | ||
rtp_receiver/ | 03-May-2024 | - | 1,170 | 884 | ||
test/ | 03-May-2024 | - | 2,836 | 2,106 | ||
video_receiver/ | 03-May-2024 | - | 1,166 | 858 | ||
video_sender/ | 03-May-2024 | - | 1,834 | 1,389 | ||
DEPS | D | 03-May-2024 | 121 | 9 | 8 | |
OWNERS | D | 03-May-2024 | 77 | 5 | 4 | |
README | D | 03-May-2024 | 1.3 KiB | 65 | 42 | |
cast.gyp | D | 03-May-2024 | 5.7 KiB | 159 | 157 | |
cast_config.cc | D | 03-May-2024 | 1.7 KiB | 55 | 39 | |
cast_config.h | D | 03-May-2024 | 5.7 KiB | 234 | 157 | |
cast_defines.h | D | 03-May-2024 | 5.8 KiB | 170 | 115 | |
cast_environment.cc | D | 03-May-2024 | 3.4 KiB | 102 | 83 | |
cast_environment.h | D | 03-May-2024 | 3.4 KiB | 93 | 56 | |
cast_receiver.gyp | D | 03-May-2024 | 889 | 34 | 32 | |
cast_receiver.h | D | 03-May-2024 | 2.8 KiB | 89 | 52 | |
cast_receiver_impl.cc | D | 03-May-2024 | 6.7 KiB | 176 | 139 | |
cast_receiver_impl.h | D | 03-May-2024 | 1.7 KiB | 51 | 31 | |
cast_sender.gyp | D | 03-May-2024 | 985 | 37 | 35 | |
cast_sender.h | D | 03-May-2024 | 3.6 KiB | 100 | 49 | |
cast_sender_impl.cc | D | 03-May-2024 | 8.2 KiB | 195 | 135 | |
cast_sender_impl.h | D | 03-May-2024 | 1.6 KiB | 55 | 38 |
README
1This directory contains a RTP/RTCP library used for the Cast mirroring 2protocol. This library is specifically built for low latency purposes and 3enables Chrome to send real-time video and audio streams. 4 5CONTENTS 6 7cast/ 8 Build rules and top level source files and headers. 9 10cast/audio_receiver/ 11 Module for receiving and decodes audio RTP stream. 12 13cast/audio_sender/ 14 Module for encoding and sending audio RTP stream. 15 16cast/congestion_control/ 17 Bandwidth estimation and network congestion handling. 18 19cast/net/pacing/ 20 Module for rate limiting data outflow. 21 22cast/rtcp/ 23 Module for handling RTCP messages. 24 25cast/rtp_common/ 26 Module for common code used for RTP messages. 27 28cast/rtp_receiver/ 29 Module for reciving RTP messages. 30 31cast/net/rtp_sender/ 32 Module for sending RTP messages. 33 34cast/test/ 35 Module for test applications. 36 37cast/video_receiver/ 38 Module for receiving and decodes video RTP stream. 39 40cast/video_sender/ 41 Module for encoding and sending video RTP stream. 42 43DEPENDENCIES 44 45Content of this directory should only depend on: 46 47base/ 48 Provides base libraries and platform independent layer. 49 50net/ 51 Provides network capabilities. 52 53third_party/libvpx 54 Provides video encoder. 55 56third_party/opus 57 Provides audio encoder. 58 59third_party/webrtc 60 Provides audio signal processing. 61 62OWNERS 63 64See OWNERS for ownership. 65