| OLD | NEW |
| 1 This directory contains a RTP/RTCP library used for the Cast mirroring | 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 | 2 protocol. This library is specifically built for low latency purposes and |
| 3 enables Chrome to send real-time video and audio streams. | 3 enables Chrome to send real-time video and audio streams. |
| 4 | 4 |
| 5 CONTENTS | 5 CONTENTS |
| 6 | 6 |
| 7 cast/ | 7 cast/ |
| 8 Build rules and top level source files and headers. | 8 Build rules and top level source files and headers. |
| 9 | 9 |
| 10 cast/audio_receiver/ | 10 cast/audio_receiver/ |
| 11 Module for receiving and decodes audio RTP stream. | 11 Module for receiving and decodes audio RTP stream. |
| 12 | 12 |
| 13 cast/audio_sender/ | 13 cast/audio_sender/ |
| 14 Module for encoding and sending audio RTP stream. | 14 Module for encoding and sending audio RTP stream. |
| 15 | 15 |
| 16 cast/congestion_control/ | 16 cast/congestion_control/ |
| 17 Bandwidth estimation and network congestion handling. | 17 Bandwidth estimation and network congestion handling. |
| 18 | 18 |
| 19 cast/net/pacing/ | 19 cast/transport/pacing/ |
| 20 Module for rate limiting data outflow. | 20 Module for rate limiting data outflow. |
| 21 | 21 |
| 22 cast/rtcp/ | 22 cast/rtcp/ |
| 23 Module for handling RTCP messages. | 23 Module for handling RTCP messages. |
| 24 | 24 |
| 25 cast/rtp_common/ | 25 cast/rtp_common/ |
| 26 Module for common code used for RTP messages. | 26 Module for common code used for RTP messages. |
| 27 | 27 |
| 28 cast/rtp_receiver/ | 28 cast/rtp_receiver/ |
| 29 Module for reciving RTP messages. | 29 Module for reciving RTP messages. |
| 30 | 30 |
| 31 cast/net/rtp_sender/ | 31 cast/transport/rtp_sender/ |
| 32 Module for sending RTP messages. | 32 Module for sending RTP messages. |
| 33 | 33 |
| 34 cast/test/ | 34 cast/test/ |
| 35 Module for test applications. | 35 Module for test applications. |
| 36 | 36 |
| 37 cast/video_receiver/ | 37 cast/video_receiver/ |
| 38 Module for receiving and decodes video RTP stream. | 38 Module for receiving and decodes video RTP stream. |
| 39 | 39 |
| 40 cast/video_sender/ | 40 cast/video_sender/ |
| 41 Module for encoding and sending video RTP stream. | 41 Module for encoding and sending video RTP stream. |
| (...skipping 13 matching lines...) Expand all Loading... |
| 55 | 55 |
| 56 third_party/opus | 56 third_party/opus |
| 57 Provides audio encoder. | 57 Provides audio encoder. |
| 58 | 58 |
| 59 third_party/webrtc | 59 third_party/webrtc |
| 60 Provides audio signal processing. | 60 Provides audio signal processing. |
| 61 | 61 |
| 62 OWNERS | 62 OWNERS |
| 63 | 63 |
| 64 See OWNERS for ownership. | 64 See OWNERS for ownership. |
| OLD | NEW |