bt_a2dp/
lib.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5/// Describing and encapsulating A2DP media codecs
6pub mod media_types;
7
8/// Codec configuration and integration with Fuchsia media
9pub mod codec;
10
11/// Task Abstractions
12pub mod media_task;
13
14/// Handling AVDTP streams
15pub mod stream;
16
17/// Peer tracking and signaling procedures
18pub mod peer;
19
20/// Collections of connected peers
21pub mod connected_peers;
22
23/// Real-time Transport Protocol parsing and packet building
24pub mod rtp;
25
26/// Permits counting for reservations.
27pub mod permits;