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