tree: dc0a69b35d3c83d25cac7f3496a36bebf0374020 [path history] [tgz]
  1. common/
  2. encoding/
  3. logging/
  4. openscreen/
  5. sender/
  6. test/
  7. BUILD.gn
  8. cast_callbacks.h
  9. cast_config.cc
  10. cast_config.h
  11. cast_environment.cc
  12. cast_environment.h
  13. constants.h
  14. DEPS
  15. DIR_METADATA
  16. OWNERS
  17. README.md
media/cast/README.md

media/cast/

This directory contains a collection of components related to streaming using the Cast Streaming Protocol (over UDP network sockets). They encode/decode raw audio or video frames, and send/receive encoded data reliably over a local area network.

NOTE: This implementation is deprecated, and to be replaced soon by the one found in ../../third_party/openscreen/src/cast/streaming/. Contact jophba@chromium.org for details.

Directory Breakdown

  • common/ - Collection of shared utility code and constants.

  • logging/ - Packet/Frame logging, for study/experimentation of the protocol at runtime.

  • net/ - Wire-level packetization and pacing.

  • sender/ - Encoder front-ends and frame-level sender implementation for audio/video.

  • test/ - A collection of end-to-end tests, experiments, benchmarks, and related utility code.

  • test/receiver/ - A minimal receiver implementation, used only for end-to-end testing.