bt_a2dp/
media_types.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
5use bitfield::bitfield;
6use bitflags::bitflags;
7use bt_avdtp as avdtp;
8
9bitflags! {
10    /// Sampling Frequency field for SBC (Octet 0; b4-7).
11    /// 44100Hz and 48000Hz are mandatory for A2DP sink.
12    /// A2DP source must support at least one of 44100Hz and 48000Hz.
13    /// A2DP Sec. 4.3.2.1
14    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
15    pub struct SbcSamplingFrequency:u8 {
16        const FREQ16000HZ   = 0b1000;
17        const FREQ32000HZ   = 0b0100;
18        const FREQ44100HZ   = 0b0010;
19        const FREQ48000HZ   = 0b0001;
20        const MANDATORY_SNK = Self::FREQ44100HZ.bits() | Self::FREQ48000HZ.bits();
21    }
22}
23
24impl SbcSamplingFrequency {
25    /// Select the "best" sampling frequency of the ones available.
26    fn best(&self) -> Option<Self> {
27        let ordered = [Self::FREQ48000HZ, Self::FREQ44100HZ, Self::FREQ32000HZ, Self::FREQ16000HZ];
28        ordered.iter().find(|freq| self.contains(**freq)).copied()
29    }
30}
31
32bitflags! {
33    /// Channel Mode field for SBC (Octet 0; b0-3).
34    /// Support for all modes is mandatory in A2DP sink.
35    /// Mono and at least one of Dual Channel, Stereo, and Joint Stereo must be
36    /// supported by A2DP source.
37    /// A2DP Sec. 4.3.2.2
38    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
39    pub struct SbcChannelMode:u8 {
40        const MONO          = 0b1000;
41        const DUAL_CHANNEL  = 0b0100;
42        const STEREO        = 0b0010;
43        const JOINT_STEREO  = 0b0001;
44        const MANDATORY_SNK = Self::MONO.bits()
45            | Self::DUAL_CHANNEL.bits()
46            | Self::STEREO.bits()
47            | Self::JOINT_STEREO.bits();
48    }
49}
50
51impl SbcChannelMode {
52    fn best(&self) -> Option<Self> {
53        let ordered = [Self::JOINT_STEREO, Self::STEREO, Self::DUAL_CHANNEL, Self::MONO];
54        ordered.iter().find(|mode| self.contains(**mode)).copied()
55    }
56}
57
58bitflags! {
59    /// The Block Length field for SBC (Octet 1; b4-7).
60    /// Support for all block lengths is mandatory in both A2DP Sink and Source.
61    /// A2DP Sec. 4.3.2.3
62    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
63    pub struct SbcBlockCount:u8 {
64        const FOUR          = 0b1000;
65        const EIGHT         = 0b0100;
66        const TWELVE        = 0b0010;
67        const SIXTEEN       = 0b0001;
68        const MANDATORY_SNK = Self::FOUR.bits()
69            | Self::EIGHT.bits()
70            | Self::TWELVE.bits()
71            | Self::SIXTEEN.bits();
72        const MANDATORY_SRC = Self::FOUR.bits()
73            | Self::EIGHT.bits()
74            | Self::TWELVE.bits()
75            | Self::SIXTEEN.bits();
76    }
77}
78
79bitflags! {
80    /// The Number of Subbands field for SBC (Octet 1; b2-3).
81    /// Support for both 4 and 8 subbands is mandatory in A2DP Sink.
82    /// Support for only 8 subbands is mandatory in A2DP Source.
83    /// 4 subbands is optional.
84    /// A2DP Sec. 4.3.2.4
85    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
86    pub struct SbcSubBands:u8 {
87        const FOUR            = 0b0010;
88        const EIGHT            = 0b0001;
89        const MANDATORY_SNK = Self::FOUR.bits() | Self::EIGHT.bits();
90        const MANDATORY_SRC = Self::EIGHT.bits();
91    }
92}
93
94bitflags! {
95    /// Allocation Method field for SBC (Octet 1; b0-1).
96    /// Support for both SNR and Loudness is mandatory in A2DP Sink.
97    /// Support for at least Loudness is mandatory in A2DP Source. SNR is optional.
98    /// A2DP Sec. 4.3.2.5
99    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
100    pub struct SbcAllocation:u8 {
101        const SNR           = 0b0010;
102        const LOUDNESS      = 0b0001;
103        const MANDATORY_SNK = Self::SNR.bits() | Self::LOUDNESS.bits();
104        const MANDATORY_SRC = Self::LOUDNESS.bits();
105    }
106}
107
108pub const SBC_CODEC_EXTRA_LEN: usize = 4;
109
110bitfield! {
111    /// SBC Codec Specific Information Elements (A2DP Sec. 4.3.2).
112    /// Packet structure:
113    ///     Octet0: Sampling Frequency (b4-7), Channel Mode (b0-3)
114    ///     Octet1: Block Length (b4-7), Subbands (b2-3), Allocation Method (b0-1)
115    ///     Octet2: Minimum Bitpool Value [2,250]
116    ///     Octet3: Maximum Bitpool Value [2,250]
117    /// Some fields are mandatory choose 1, and therefore do not have a mandatory parameter method.
118    struct SbcCodecInfoBits(u32);
119    impl Debug;
120    u8;
121    maxbitpoolval, set_maxbpv: 7, 0;
122    minbitpoolval, set_minbpv: 15, 8;
123    allocation_method, set_allocation_method: 17,16;
124    sub_bands, set_sub_bands: 19, 18;
125    block_count, set_block_count: 23, 20;
126    channel_mode, set_channel_mode: 27, 24;
127    sampling_frequency, set_sampling_frequency: 31, 28;
128}
129
130#[derive(Debug)]
131pub struct SbcCodecInfo(SbcCodecInfoBits);
132
133impl SbcCodecInfo {
134    // Bitpool values can range from [2,250].
135    pub const BITPOOL_MIN: u8 = 2;
136    pub const BITPOOL_MAX: u8 = 250;
137    pub fn new(
138        sampling_frequency: SbcSamplingFrequency,
139        channel_mode: SbcChannelMode,
140        block_count: SbcBlockCount,
141        sub_bands: SbcSubBands,
142        allocation: SbcAllocation,
143        min_bpv: u8,
144        max_bpv: u8,
145    ) -> avdtp::Result<Self> {
146        if min_bpv > max_bpv {
147            return Err(avdtp::Error::OutOfRange);
148        }
149        if min_bpv < Self::BITPOOL_MIN
150            || min_bpv > Self::BITPOOL_MAX
151            || max_bpv < Self::BITPOOL_MIN
152            || max_bpv > Self::BITPOOL_MAX
153        {
154            return Err(avdtp::Error::OutOfRange);
155        }
156
157        let mut res = SbcCodecInfoBits(0);
158        res.set_maxbpv(max_bpv);
159        res.set_minbpv(min_bpv);
160        res.set_allocation_method(allocation.bits());
161        res.set_sub_bands(sub_bands.bits());
162        res.set_block_count(block_count.bits());
163        res.set_channel_mode(channel_mode.bits());
164        res.set_sampling_frequency(sampling_frequency.bits());
165        Ok(Self(res))
166    }
167
168    pub fn to_bytes(&self) -> [u8; 4] {
169        (self.0).0.to_be_bytes()
170    }
171
172    pub fn sub_bands(&self) -> SbcSubBands {
173        SbcSubBands::from_bits_truncate(self.0.sub_bands())
174    }
175
176    pub fn allocation_method(&self) -> SbcAllocation {
177        SbcAllocation::from_bits_truncate(self.0.allocation_method())
178    }
179
180    pub fn block_count(&self) -> SbcBlockCount {
181        SbcBlockCount::from_bits_truncate(self.0.block_count())
182    }
183
184    pub fn channel_mode(&self) -> SbcChannelMode {
185        SbcChannelMode::from_bits_truncate(self.0.channel_mode())
186    }
187
188    /// Returns the number of channels selected.
189    /// Returns Error::OutOfRange if both mono and stereo are selected.
190    pub fn channel_count(&self) -> avdtp::Result<usize> {
191        let chan_mode = self.channel_mode();
192        if chan_mode == SbcChannelMode::MONO {
193            return Ok(1);
194        } else if !chan_mode.is_empty() && (chan_mode & SbcChannelMode::MONO).is_empty() {
195            return Ok(2);
196        }
197        Err(avdtp::Error::OutOfRange)
198    }
199
200    pub fn max_bitpool(&self) -> u8 {
201        self.0.maxbitpoolval()
202    }
203
204    /// Returns the sampling frequency selected, in hz.
205    /// Returns Error::OutOfRange if multiple frequencies are selected.
206    pub fn sampling_frequency(&self) -> avdtp::Result<u32> {
207        let hz = match SbcSamplingFrequency::from_bits_truncate(self.0.sampling_frequency()) {
208            SbcSamplingFrequency::FREQ16000HZ => 16000,
209            SbcSamplingFrequency::FREQ32000HZ => 32000,
210            SbcSamplingFrequency::FREQ44100HZ => 44100,
211            SbcSamplingFrequency::FREQ48000HZ => 48000,
212            _ => return Err(avdtp::Error::OutOfRange),
213        };
214        Ok(hz)
215    }
216
217    /// Returns true if `other` is a compatible configuration of `self`
218    pub fn supports(&self, other: &Self) -> bool {
219        let allowed_frequencies =
220            SbcSamplingFrequency::from_bits_truncate(self.0.sampling_frequency());
221        let selected_frequencies =
222            SbcSamplingFrequency::from_bits_truncate(other.0.sampling_frequency());
223        if !(allowed_frequencies.intersects(selected_frequencies)) {
224            return false;
225        }
226        if !(self.allocation_method().intersects(other.allocation_method())) {
227            return false;
228        }
229        if !(self.channel_mode().intersects(other.channel_mode())) {
230            return false;
231        }
232        if !(self.block_count().intersects(other.block_count())) {
233            return false;
234        }
235        if !(self.sub_bands().intersects(other.sub_bands())) {
236            return false;
237        }
238        if self.0.minbitpoolval() > other.0.minbitpoolval() {
239            return false;
240        }
241        if self.0.maxbitpoolval() < other.0.maxbitpoolval() {
242            return false;
243        }
244        return true;
245    }
246
247    /// Return the best intersection of a and b's capabilities, if one exists.
248    pub fn negotiate(a: &Self, b: &Self) -> Option<Self> {
249        let min_bitpool = std::cmp::max(a.0.minbitpoolval(), b.0.minbitpoolval());
250        let max_bitpool = std::cmp::min(a.0.maxbitpoolval(), b.0.maxbitpoolval());
251        if max_bitpool < min_bitpool {
252            return None;
253        }
254        let available_frequencies = SbcSamplingFrequency::from_bits_truncate(
255            a.0.sampling_frequency() & b.0.sampling_frequency(),
256        );
257        let frequency = match available_frequencies.best() {
258            None => return None,
259            Some(freq) => freq,
260        };
261        let available_mode = a.channel_mode() & b.channel_mode();
262        let channel_mode = match available_mode.best() {
263            None => return None,
264            Some(mode) => mode,
265        };
266        // All sources and sinks must support these options. A2DP 1.3.2 Sec 4.3.2
267        let allocation = SbcAllocation::LOUDNESS;
268        let block_count = SbcBlockCount::SIXTEEN;
269        let sub_bands = SbcSubBands::EIGHT;
270        Some(
271            SbcCodecInfo::new(
272                frequency,
273                channel_mode,
274                block_count,
275                sub_bands,
276                allocation,
277                min_bitpool,
278                max_bitpool,
279            )
280            .expect("supported options"),
281        )
282    }
283}
284
285impl TryFrom<&[u8]> for SbcCodecInfo {
286    type Error = avdtp::Error;
287
288    fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
289        if value.len() != SBC_CODEC_EXTRA_LEN {
290            return Err(avdtp::Error::OutOfRange);
291        }
292
293        let mut codec_info_bytes = [0_u8; SBC_CODEC_EXTRA_LEN];
294        codec_info_bytes.copy_from_slice(&value);
295
296        Ok(Self(SbcCodecInfoBits(u32::from_be_bytes(codec_info_bytes))))
297    }
298}
299
300impl From<SbcCodecInfo> for avdtp::ServiceCapability {
301    fn from(codec_info: SbcCodecInfo) -> Self {
302        Self::MediaCodec {
303            media_type: avdtp::MediaType::Audio,
304            codec_type: avdtp::MediaCodecType::AUDIO_SBC,
305            codec_extra: codec_info.to_bytes().to_vec(),
306        }
307    }
308}
309
310bitflags! {
311    /// Object Type field for MPEG-2,4 AAC (Octet 0; b0-7).
312    /// Support for MPEG-2 AAC LC is mandatory in both A2DP Sink and Source.
313    /// Bits 0 to 4 are RFA.
314    /// A2DP Sec. 4.5.2.1
315    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
316    pub struct AacObjectType:u8 {
317        const MPEG2_AAC_LC       = 0b10000000;
318        const MPEG4_AAC_LC       = 0b01000000;
319        const MPEG4_AAC_LTP      = 0b00100000;
320        const MPEG4_AAC_SCALABLE = 0b00010000;
321        const MANDATORY_SNK = Self::MPEG2_AAC_LC.bits();
322        const MANDATORY_SRC = Self::MPEG2_AAC_LC.bits();
323    }
324}
325
326bitflags! {
327    /// Sampling Frequency field for MPEG-2,4 AAC (Octet 1; b0-7, Octet 2; b4-7)
328    /// Support for 44.1KHz & 48.0KHz is mandatory in A2DP Sink.
329    /// Support for either 44.1KHz or 48.0KHz is mandatory in A2DP Source.
330    /// A2DP Sec. 4.5.2.2
331    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
332    pub struct AacSamplingFrequency:u16 {
333        const FREQ8000HZ  = 0b100000000000;
334        const FREQ11025HZ = 0b010000000000;
335        const FREQ12000HZ = 0b001000000000;
336        const FREQ16000HZ = 0b000100000000;
337        const FREQ22050HZ = 0b000010000000;
338        const FREQ24000HZ = 0b000001000000;
339        const FREQ32000HZ = 0b000000100000;
340        const FREQ44100HZ = 0b000000010000;
341        const FREQ48000HZ = 0b000000001000;
342        const FREQ64000HZ = 0b000000000100;
343        const FREQ88200HZ = 0b000000000010;
344        const FREQ96000HZ = 0b000000000001;
345        const MANDATORY_SNK = Self::FREQ44100HZ.bits() | Self::FREQ48000HZ.bits();
346    }
347}
348
349impl AacSamplingFrequency {
350    fn best(&self) -> Option<Self> {
351        // Since one of 48000 or 44100 is mandatory, this list should find one.
352        let ordered = [Self::FREQ96000HZ, Self::FREQ48000HZ, Self::FREQ44100HZ];
353        ordered.iter().find(|freq| self.contains(**freq)).copied()
354    }
355}
356
357bitflags! {
358    /// Channels field for MPEG-2,4 AAC (Octet 2; b2-3).
359    /// Support for both 1 and 2 channels is mandatory in A2DP Sink.
360    /// Support for either 1 or 2 channels is mandatory in A2DP Source.
361    /// A2DP Sec 4.5.2.3
362    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
363    pub struct AacChannels:u8 {
364        const ONE = 0b10;
365        const TWO = 0b01;
366        const MANDATORY_SNK = Self::ONE.bits() | Self::TWO.bits();
367    }
368}
369
370impl AacChannels {
371    fn best(&self) -> Option<Self> {
372        let ordered = [Self::TWO, Self::ONE];
373        ordered.iter().find(|channels| self.contains(**channels)).copied()
374    }
375}
376
377bitflags! {
378    /// Support of Variable Bit Rate (VBR) field for MPEG-2,4 AAC (Octet 3; b7).
379    /// Support for VBR is mandatory in A2DP Sink.
380    /// A2DP Sec 4.5.2.5
381    #[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
382    struct AacVariableBitRate: u8 {
383        const VBR_SUPPORTED = 0b1;
384        const MANDATORY_SNK = Self::VBR_SUPPORTED.bits();
385    }
386}
387
388pub const AAC_CODEC_EXTRA_LEN: usize = 6;
389
390bitfield! {
391    /// MPEG-2 AAC Codec Specific Information Elements (A2DP Sec 4.5.2)
392    /// Structure:
393    ///     Octet0: Object Type (b 40-47)
394    ///     Octet1: Sampling Frequency (b 32-39)
395    ///     Octet2: Sampling Frequency (b 28-31), Channels (b 26-27), RFA (b 24-25)
396    ///     Octet3: VBR (b 23), Bit Rate (b 16-22)
397    ///     Octet4: Bit Rate (b 8-15)
398    ///     Octet5: Bit Rate (b 0-7)
399    /// Some fields are mandatory choose 1, and therefore do not have a mandatory parameter method.
400    struct AacCodecInfoBits(u64);
401    impl Debug;
402    u8;
403    u32, bitrate, set_bitrate: 22, 0;
404    vbr, set_vbr: 23, 23;
405    // Bits 24-25 RFA.
406    channels, set_channels: 27,26;
407    u16, sampling_frequency, set_sampling_frequency: 39, 28;
408    object_type, set_object_type: 47, 40;
409    // Bits 48-63 Unused.
410}
411
412#[derive(Debug)]
413pub struct AacCodecInfo(AacCodecInfoBits);
414
415impl AacCodecInfo {
416    pub fn new(
417        object_type: AacObjectType,
418        sampling_frequency: AacSamplingFrequency,
419        channels: AacChannels,
420        vbr: bool,
421        bitrate: u32,
422    ) -> avdtp::Result<Self> {
423        // Bitrate is expressed as a 23bit UiMsbf, stored in a u32.
424        if bitrate > 0x7fffff {
425            return Err(avdtp::Error::OutOfRange);
426        }
427        let mut res = AacCodecInfoBits(0);
428        res.set_bitrate(bitrate);
429        if vbr {
430            res.set_vbr(AacVariableBitRate::VBR_SUPPORTED.bits());
431        }
432        res.set_channels(channels.bits());
433        res.set_sampling_frequency(sampling_frequency.bits());
434        res.set_object_type(object_type.bits());
435        Ok(Self(res))
436    }
437
438    /// `AacCodecInfoBytes` is represented as an u64, with upper 16 bits unused.
439    /// Return a vector of the lower 6 bytes.
440    pub fn to_bytes(&self) -> [u8; 6] {
441        let codec_info = (self.0).0.to_be_bytes();
442        let mut res = [0u8; 6];
443        res.copy_from_slice(&codec_info[2..8]);
444        res
445    }
446
447    pub fn variable_bit_rate(&self) -> bool {
448        self.0.vbr() == 0b1
449    }
450
451    pub fn bitrate(&self) -> u32 {
452        self.0.bitrate()
453    }
454
455    pub fn channels(&self) -> AacChannels {
456        AacChannels::from_bits_truncate(self.0.channels())
457    }
458
459    /// Returns the number of channels selected.
460    /// Returns Error::OutOfRange if both mono and stereo are selected.
461    pub fn channel_count(&self) -> avdtp::Result<usize> {
462        let count = match self.channels() {
463            AacChannels::ONE => 1,
464            AacChannels::TWO => 2,
465            _ => return Err(avdtp::Error::OutOfRange),
466        };
467        Ok(count)
468    }
469
470    fn object_type(&self) -> AacObjectType {
471        AacObjectType::from_bits_truncate(self.0.object_type())
472    }
473
474    /// Returns the sampling frequeency selected, in hz.
475    /// Returns Error::OutOfRange if multiple frequencies are selected.
476    pub fn sampling_frequency(&self) -> avdtp::Result<u32> {
477        let hz = match AacSamplingFrequency::from_bits_truncate(self.0.sampling_frequency()) {
478            AacSamplingFrequency::FREQ8000HZ => 8000,
479            AacSamplingFrequency::FREQ11025HZ => 11025,
480            AacSamplingFrequency::FREQ12000HZ => 12000,
481            AacSamplingFrequency::FREQ16000HZ => 16000,
482            AacSamplingFrequency::FREQ22050HZ => 22050,
483            AacSamplingFrequency::FREQ24000HZ => 24000,
484            AacSamplingFrequency::FREQ32000HZ => 32000,
485            AacSamplingFrequency::FREQ44100HZ => 44100,
486            AacSamplingFrequency::FREQ48000HZ => 48000,
487            AacSamplingFrequency::FREQ64000HZ => 64000,
488            AacSamplingFrequency::FREQ88200HZ => 88200,
489            AacSamplingFrequency::FREQ96000HZ => 96000,
490            _ => return Err(avdtp::Error::OutOfRange),
491        };
492        Ok(hz)
493    }
494
495    /// Returns true if `other` is a compatable configuration of `self`
496    pub fn supports(&self, other: &Self) -> bool {
497        let allowed_frequencies =
498            AacSamplingFrequency::from_bits_truncate(self.0.sampling_frequency());
499        let selected_frequencies =
500            AacSamplingFrequency::from_bits_truncate(other.0.sampling_frequency());
501        if !(allowed_frequencies.intersects(selected_frequencies)) {
502            return false;
503        }
504        if !(self.channels().intersects(other.channels())) {
505            return false;
506        }
507        if !(self.object_type().intersects(other.object_type())) {
508            return false;
509        }
510        if !self.variable_bit_rate() && other.variable_bit_rate() {
511            return false;
512        }
513        // Note: the "capabilities" bitrate field is unclear in the A2DP spec: 4.5.2.4.
514        // Interpreting this as the max bitrate for either constant or vbr.
515        // Zero is "not known", which we interpret to be "any bitrate is okay", but only
516        // if we are interpreting our bitrate support
517        if self.bitrate() != 0 && (self.bitrate() < other.bitrate()) {
518            return false;
519        }
520        return true;
521    }
522
523    pub fn negotiate(a: &Self, b: &Self) -> Option<Self> {
524        let available_frequencies = AacSamplingFrequency::from_bits_truncate(
525            a.0.sampling_frequency() & b.0.sampling_frequency(),
526        );
527        let sampling_frequency = match available_frequencies.best() {
528            None => return None,
529            Some(freq) => freq,
530        };
531        let available_channels = a.channels() & b.channels();
532        let channels = match available_channels.best() {
533            None => return None,
534            Some(channels) => channels,
535        };
536        let vbr = a.variable_bit_rate() && b.variable_bit_rate();
537        // If either bitrate is unspecified, take the other one, otherwise, the minimum.
538        // If both are unspecified, choose a reasonable one.
539        let bitrate = match (a.bitrate(), b.bitrate()) {
540            // Pick a reasonable quality bitrate to use by default. 64k average per channel.
541            (0, 0) => 128000,
542            (0, b) => b,
543            (a, 0) => a,
544            (a, b) => std::cmp::min(a, b),
545        };
546        // This option is mandatory for source and sink and we prefer it. See A2DP 1.3.2 Sec 4.5.2
547        let object_type = AacObjectType::MPEG2_AAC_LC;
548        Some(AacCodecInfo::new(object_type, sampling_frequency, channels, vbr, bitrate).unwrap())
549    }
550}
551
552impl TryFrom<&[u8]> for AacCodecInfo {
553    type Error = avdtp::Error;
554
555    /// Create `AacCodecInfo` from slice of length `AAC_CODEC_EXTRA_LEN`
556    fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
557        if value.len() != AAC_CODEC_EXTRA_LEN {
558            return Err(avdtp::Error::OutOfRange);
559        }
560        let mut codec_info_bytes = [0_u8; 8];
561        let codec_info_slice = &mut codec_info_bytes[2..8];
562        // AacCodecInfo is represented as 8 bytes, with lower 6 bytes containing
563        // the codec extra data.
564        codec_info_slice.copy_from_slice(&value);
565        Ok(Self(AacCodecInfoBits(u64::from_be_bytes(codec_info_bytes))))
566    }
567}
568
569impl From<AacCodecInfo> for avdtp::ServiceCapability {
570    fn from(codec_info: AacCodecInfo) -> Self {
571        Self::MediaCodec {
572            media_type: avdtp::MediaType::Audio,
573            codec_type: avdtp::MediaCodecType::AUDIO_AAC,
574            codec_extra: codec_info.to_bytes().to_vec(),
575        }
576    }
577}
578
579#[cfg(test)]
580mod tests {
581    use super::*;
582    use assert_matches::assert_matches;
583
584    #[test]
585    /// Unit test for the SBC media codec info generation.
586    fn test_sbc_codec_info() {
587        // Mandatory A2DP Sink support case.
588        let sbc_codec_info: SbcCodecInfo = SbcCodecInfo::new(
589            SbcSamplingFrequency::MANDATORY_SNK,
590            SbcChannelMode::MANDATORY_SNK,
591            SbcBlockCount::MANDATORY_SNK,
592            SbcSubBands::MANDATORY_SNK,
593            SbcAllocation::MANDATORY_SNK,
594            2,
595            250,
596        )
597        .expect("Couldn't create sbc media codec info.");
598        let res = sbc_codec_info.to_bytes();
599        let codec_extra: Vec<u8> = vec![0x3F, 0xFF, 2, 250];
600        assert_eq!(codec_extra, res);
601
602        // reverse parsing and check we match
603        let res = SbcCodecInfo::try_from(&codec_extra[..]).expect("created codec info");
604        assert_eq!((res.0).0, (sbc_codec_info.0).0);
605
606        // Mandatory A2DP source support case. Some fields are choose 1 fields.
607        let sbc_codec_info: SbcCodecInfo = SbcCodecInfo::new(
608            SbcSamplingFrequency::FREQ44100HZ,
609            SbcChannelMode::MONO | SbcChannelMode::DUAL_CHANNEL,
610            SbcBlockCount::MANDATORY_SRC,
611            SbcSubBands::MANDATORY_SRC,
612            SbcAllocation::MANDATORY_SRC,
613            2,
614            250,
615        )
616        .expect("Couldn't create sbc media codec info.");
617        let res = sbc_codec_info.to_bytes();
618        assert_eq!(vec![0x2C, 0xF5, 2, 250], res);
619
620        // No supported codec information
621        let sbc_codec_info: SbcCodecInfo = SbcCodecInfo::new(
622            SbcSamplingFrequency::empty(),
623            SbcChannelMode::empty(),
624            SbcBlockCount::empty(),
625            SbcSubBands::empty(),
626            SbcAllocation::empty(),
627            2,
628            250,
629        )
630        .expect("Couldn't create sbc media codec info.");
631        assert_matches!(sbc_codec_info.channel_count(), Err(avdtp::Error::OutOfRange));
632        let res = sbc_codec_info.to_bytes();
633        assert_eq!(vec![0x00, 0x00, 2, 250], res);
634
635        // All codec field values are supported
636        let sbc_codec_info: SbcCodecInfo = SbcCodecInfo::new(
637            SbcSamplingFrequency::all(),
638            SbcChannelMode::all(),
639            SbcBlockCount::all(),
640            SbcSubBands::all(),
641            SbcAllocation::all(),
642            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
643            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
644        )
645        .expect("Couldn't create sbc media codec info.");
646        assert_matches!(sbc_codec_info.channel_count(), Err(avdtp::Error::OutOfRange));
647        let res = sbc_codec_info.to_bytes();
648        assert_eq!(vec![0xFF, 0xFF, 2, 250], res);
649
650        // Out of range bitpool value
651        let sbc_codec_info = SbcCodecInfo::new(
652            SbcSamplingFrequency::all(),
653            SbcChannelMode::all(),
654            SbcBlockCount::all(),
655            SbcSubBands::all(),
656            SbcAllocation::all(),
657            20,
658            252, // Too large.
659        );
660        assert!(sbc_codec_info.is_err());
661
662        // Out of range bitpool value
663        let sbc_codec_info = SbcCodecInfo::new(
664            SbcSamplingFrequency::all(),
665            SbcChannelMode::all(),
666            SbcBlockCount::all(),
667            SbcSubBands::all(),
668            SbcAllocation::all(),
669            0, // Too small
670            240,
671        );
672        assert!(sbc_codec_info.is_err());
673
674        // Invalid bitpool value
675        let sbc_codec_info = SbcCodecInfo::new(
676            SbcSamplingFrequency::all(),
677            SbcChannelMode::all(),
678            SbcBlockCount::all(),
679            SbcSubBands::all(),
680            SbcAllocation::all(),
681            100,
682            50,
683        );
684        assert!(sbc_codec_info.is_err());
685
686        let empty = vec![0, 0, 0, 0];
687        let res = SbcCodecInfo::try_from(&empty[..]).expect("created codec info");
688        assert_eq!((res.0).0, 0);
689
690        let too_big = vec![0, 0, 0, 0, 0];
691        assert_matches!(SbcCodecInfo::try_from(&too_big[..]), Err(avdtp::Error::OutOfRange));
692
693        // Mono and Stereo
694        let sbc_codec_info: SbcCodecInfo = SbcCodecInfo::new(
695            SbcSamplingFrequency::FREQ44100HZ,
696            SbcChannelMode::MONO,
697            SbcBlockCount::MANDATORY_SRC,
698            SbcSubBands::MANDATORY_SRC,
699            SbcAllocation::MANDATORY_SRC,
700            2,
701            250,
702        )
703        .expect("Couldn't create sbc media codec info.");
704        assert_matches!(sbc_codec_info.channel_count(), Ok(1));
705
706        let sbc_codec_info: SbcCodecInfo = SbcCodecInfo::new(
707            SbcSamplingFrequency::FREQ44100HZ,
708            SbcChannelMode::JOINT_STEREO,
709            SbcBlockCount::MANDATORY_SRC,
710            SbcSubBands::MANDATORY_SRC,
711            SbcAllocation::MANDATORY_SRC,
712            2,
713            250,
714        )
715        .expect("Couldn't create sbc media codec info.");
716        assert_matches!(sbc_codec_info.channel_count(), Ok(2));
717    }
718
719    #[test]
720    fn test_sbc_codec_supports() {
721        let sbc_codec_all = SbcCodecInfo::new(
722            SbcSamplingFrequency::all(),
723            SbcChannelMode::all(),
724            SbcBlockCount::all(),
725            SbcSubBands::all(),
726            SbcAllocation::all(),
727            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
728            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
729        )
730        .expect("Couldn't create sbc media codec info.");
731        // Should support itself.
732        assert!(sbc_codec_all.supports(&sbc_codec_all));
733
734        let sbc_codec_441 = SbcCodecInfo::new(
735            SbcSamplingFrequency::FREQ44100HZ,
736            SbcChannelMode::all(),
737            SbcBlockCount::all(),
738            SbcSubBands::all(),
739            SbcAllocation::all(),
740            53,                        // Smallest bitpool value.
741            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
742        )
743        .expect("Couldn't create sbc media codec info.");
744
745        let sbc_codec_48 = SbcCodecInfo::new(
746            SbcSamplingFrequency::FREQ48000HZ,
747            SbcChannelMode::all(),
748            SbcBlockCount::all(),
749            SbcSubBands::all(),
750            SbcAllocation::all(),
751            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
752            53,                        // Largest bitpool value.
753        )
754        .expect("Couldn't create sbc media codec info.");
755
756        assert!(sbc_codec_all.supports(&sbc_codec_441));
757        assert!(sbc_codec_all.supports(&sbc_codec_48));
758
759        // Frequency mismatches
760        assert!(!sbc_codec_48.supports(&sbc_codec_441));
761        assert!(!sbc_codec_441.supports(&sbc_codec_48));
762
763        // Min / Max bitpools
764        assert!(!sbc_codec_48.supports(&sbc_codec_all));
765        assert!(!sbc_codec_441.supports(&sbc_codec_all));
766
767        let sbc_codec_mono = SbcCodecInfo::new(
768            SbcSamplingFrequency::all(),
769            SbcChannelMode::MONO,
770            SbcBlockCount::all(),
771            SbcSubBands::all(),
772            SbcAllocation::all(),
773            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
774            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
775        )
776        .expect("Couldn't create sbc media codec info.");
777        let sbc_codec_stereo = SbcCodecInfo::new(
778            SbcSamplingFrequency::all(),
779            SbcChannelMode::JOINT_STEREO,
780            SbcBlockCount::all(),
781            SbcSubBands::all(),
782            SbcAllocation::all(),
783            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
784            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
785        )
786        .expect("Couldn't create sbc media codec info.");
787
788        assert!(sbc_codec_all.supports(&sbc_codec_mono));
789        assert!(sbc_codec_all.supports(&sbc_codec_stereo));
790        assert!(!sbc_codec_mono.supports(&sbc_codec_stereo));
791        assert!(!sbc_codec_stereo.supports(&sbc_codec_mono));
792
793        let sbc_codec_blocks_4 = SbcCodecInfo::new(
794            SbcSamplingFrequency::all(),
795            SbcChannelMode::all(),
796            SbcBlockCount::FOUR,
797            SbcSubBands::all(),
798            SbcAllocation::all(),
799            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
800            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
801        )
802        .expect("Couldn't create sbc media codec info.");
803        let sbc_codec_blocks_8 = SbcCodecInfo::new(
804            SbcSamplingFrequency::all(),
805            SbcChannelMode::all(),
806            SbcBlockCount::EIGHT,
807            SbcSubBands::all(),
808            SbcAllocation::all(),
809            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
810            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
811        )
812        .expect("Couldn't create sbc media codec info.");
813
814        assert!(sbc_codec_all.supports(&sbc_codec_blocks_4));
815        assert!(sbc_codec_all.supports(&sbc_codec_blocks_8));
816        assert!(!sbc_codec_blocks_4.supports(&sbc_codec_blocks_8));
817        assert!(!sbc_codec_blocks_8.supports(&sbc_codec_blocks_4));
818
819        let sbc_codec_bands_4 = SbcCodecInfo::new(
820            SbcSamplingFrequency::all(),
821            SbcChannelMode::all(),
822            SbcBlockCount::FOUR,
823            SbcSubBands::FOUR,
824            SbcAllocation::all(),
825            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
826            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
827        )
828        .expect("Couldn't create sbc media codec info.");
829        let sbc_codec_bands_8 = SbcCodecInfo::new(
830            SbcSamplingFrequency::all(),
831            SbcChannelMode::all(),
832            SbcBlockCount::FOUR,
833            SbcSubBands::EIGHT,
834            SbcAllocation::all(),
835            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
836            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
837        )
838        .expect("Couldn't create sbc media codec info.");
839
840        assert!(sbc_codec_all.supports(&sbc_codec_bands_4));
841        assert!(sbc_codec_all.supports(&sbc_codec_bands_8));
842        assert!(!sbc_codec_bands_4.supports(&sbc_codec_bands_8));
843        assert!(!sbc_codec_bands_8.supports(&sbc_codec_bands_4));
844
845        let sbc_codec_snr = SbcCodecInfo::new(
846            SbcSamplingFrequency::all(),
847            SbcChannelMode::all(),
848            SbcBlockCount::FOUR,
849            SbcSubBands::FOUR,
850            SbcAllocation::SNR,
851            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
852            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
853        )
854        .expect("Couldn't create sbc media codec info.");
855        let sbc_codec_loudness = SbcCodecInfo::new(
856            SbcSamplingFrequency::all(),
857            SbcChannelMode::all(),
858            SbcBlockCount::FOUR,
859            SbcSubBands::FOUR,
860            SbcAllocation::LOUDNESS,
861            SbcCodecInfo::BITPOOL_MIN, // Smallest bitpool value.
862            SbcCodecInfo::BITPOOL_MAX, // Largest bitpool value.
863        )
864        .expect("Couldn't create sbc media codec info.");
865
866        assert!(sbc_codec_all.supports(&sbc_codec_snr));
867        assert!(sbc_codec_all.supports(&sbc_codec_loudness));
868        assert!(!sbc_codec_snr.supports(&sbc_codec_loudness));
869        assert!(!sbc_codec_loudness.supports(&sbc_codec_snr));
870    }
871
872    #[test]
873    fn test_aac_codec_info() {
874        // Empty case.
875        let aac_codec_info = AacCodecInfo::new(
876            AacObjectType::empty(),
877            AacSamplingFrequency::empty(),
878            AacChannels::empty(),
879            false,
880            0,
881        )
882        .expect("Error creating aac media codec info.");
883        let res = aac_codec_info.to_bytes();
884        assert_eq!(vec![0, 0, 0, 0, 0, 0], res);
885
886        // All codec info supported case.
887        let aac_codec_info = AacCodecInfo::new(
888            AacObjectType::all(),
889            AacSamplingFrequency::all(),
890            AacChannels::all(),
891            true,
892            8388607, // Largest 23-bit bit rate.
893        )
894        .expect("Error creating aac media codec info.");
895        assert_matches!(aac_codec_info.channel_count(), Err(avdtp::Error::OutOfRange));
896        let res = aac_codec_info.to_bytes();
897        assert_eq!(vec![0xF0, 0xFF, 0xFC, 0xFF, 0xFF, 0xFF], res);
898
899        // Only VBR specified.
900        let aac_codec_info = AacCodecInfo::new(
901            AacObjectType::empty(),
902            AacSamplingFrequency::empty(),
903            AacChannels::empty(),
904            true,
905            0,
906        )
907        .expect("Error creating aac media codec info.");
908        assert_matches!(aac_codec_info.channel_count(), Err(avdtp::Error::OutOfRange));
909        let res = aac_codec_info.to_bytes();
910        assert_eq!(vec![0x00, 0x00, 0x00, 0x80, 0x00, 0x00], res);
911
912        // A2DP Sink mandatory fields supported.
913        let aac_codec_info = AacCodecInfo::new(
914            AacObjectType::MANDATORY_SNK,
915            AacSamplingFrequency::MANDATORY_SNK,
916            AacChannels::MANDATORY_SNK,
917            true,
918            0xAAFF, // Arbitrary bit rate.
919        )
920        .expect("Error creating aac media codec info.");
921        let res = aac_codec_info.to_bytes();
922        let codec_extra: Vec<u8> = vec![0x80, 0x01, 0x8C, 0x80, 0xAA, 0xFF];
923        assert_eq!(codec_extra, res);
924
925        // reverse parsing and check we match
926        let res = AacCodecInfo::try_from(&codec_extra[..]).expect("created codec info");
927        assert_eq!((res.0).0, (aac_codec_info.0).0);
928
929        // A2DP Source mandatory fields supported.
930        let aac_codec_info = AacCodecInfo::new(
931            AacObjectType::MANDATORY_SRC,
932            AacSamplingFrequency::FREQ44100HZ,
933            AacChannels::ONE,
934            false,  // VBR is optional in SRC.
935            0xAAFF, // Arbitrary
936        )
937        .expect("Error creating aac media codec info.");
938        assert_matches!(aac_codec_info.channel_count(), Ok(1));
939        let res = aac_codec_info.to_bytes();
940        assert_eq!(vec![0x80, 0x01, 0x08, 0x00, 0xAA, 0xFF], res);
941
942        // A2DP Source with two channels
943        let aac_codec_info = AacCodecInfo::new(
944            AacObjectType::MANDATORY_SRC,
945            AacSamplingFrequency::FREQ44100HZ,
946            AacChannels::TWO,
947            false,  // VBR is optional in SRC.
948            0xAAFF, // Arbitrary
949        )
950        .expect("Error creating aac media codec info.");
951        assert_matches!(aac_codec_info.channel_count(), Ok(2));
952
953        // Out of range bit rate.
954        let aac_codec_info = AacCodecInfo::new(
955            AacObjectType::MANDATORY_SRC,
956            AacSamplingFrequency::FREQ44100HZ,
957            AacChannels::ONE,
958            false,
959            0xFFFFFF, // Too large
960        );
961        assert!(aac_codec_info.is_err());
962
963        let empty = vec![0, 0, 0, 0, 0, 0];
964        let res = AacCodecInfo::try_from(&empty[..]).expect("created codec info");
965        assert_eq!((res.0).0, 0);
966
967        let too_big = vec![0, 0, 0, 0, 0, 0, 0];
968        assert_matches!(AacCodecInfo::try_from(&too_big[..]), Err(avdtp::Error::OutOfRange));
969    }
970
971    #[test]
972    fn test_aac_codec_supports() {
973        // All codec info supported case.
974        let aac_codec_all = AacCodecInfo::new(
975            AacObjectType::all(),
976            AacSamplingFrequency::all(),
977            AacChannels::all(),
978            true,
979            8388607, // Largest 23-bit bit rate.
980        )
981        .expect("Error creating aac media codec info.");
982
983        assert!(aac_codec_all.supports(&aac_codec_all));
984
985        let aac_codec_441 = AacCodecInfo::new(
986            AacObjectType::all(),
987            AacSamplingFrequency::FREQ44100HZ,
988            AacChannels::all(),
989            true,
990            50, // Lower than largest.
991        )
992        .expect("Error creating aac media codec info.");
993
994        let aac_codec_48 = AacCodecInfo::new(
995            AacObjectType::all(),
996            AacSamplingFrequency::FREQ48000HZ,
997            AacChannels::all(),
998            true,
999            8388607, // Largest 23-bit bit rate.
1000        )
1001        .expect("Error creating aac media codec info.");
1002
1003        assert!(aac_codec_all.supports(&aac_codec_441));
1004        assert!(aac_codec_all.supports(&aac_codec_48));
1005
1006        // Frequencies
1007        assert!(!aac_codec_441.supports(&aac_codec_48));
1008        assert!(!aac_codec_48.supports(&aac_codec_441));
1009
1010        // Max bitrate.
1011        assert!(!aac_codec_441.supports(&aac_codec_all));
1012
1013        // Channels
1014        let aac_codec_chan_one = AacCodecInfo::new(
1015            AacObjectType::all(),
1016            AacSamplingFrequency::all(),
1017            AacChannels::ONE,
1018            true,
1019            8388607, // Largest 23-bit bit rate.
1020        )
1021        .expect("Error creating aac media codec info.");
1022
1023        let aac_codec_chan_two = AacCodecInfo::new(
1024            AacObjectType::all(),
1025            AacSamplingFrequency::all(),
1026            AacChannels::TWO,
1027            true,
1028            8388607, // Largest 23-bit bit rate.
1029        )
1030        .expect("Error creating aac media codec info.");
1031
1032        assert!(aac_codec_all.supports(&aac_codec_chan_one));
1033        assert!(aac_codec_all.supports(&aac_codec_chan_two));
1034        assert!(!aac_codec_chan_one.supports(&aac_codec_chan_two));
1035        assert!(!aac_codec_chan_two.supports(&aac_codec_chan_one));
1036
1037        // object type
1038        let aac_codec_mpeg2 = AacCodecInfo::new(
1039            AacObjectType::MPEG2_AAC_LC,
1040            AacSamplingFrequency::all(),
1041            AacChannels::ONE,
1042            true,
1043            8388607, // Largest 23-bit bit rate.
1044        )
1045        .expect("Error creating aac media codec info.");
1046
1047        let aac_codec_mpeg4 = AacCodecInfo::new(
1048            AacObjectType::MPEG4_AAC_LC,
1049            AacSamplingFrequency::all(),
1050            AacChannels::ONE,
1051            true,
1052            8388607, // Largest 23-bit bit rate.
1053        )
1054        .expect("Error creating aac media codec info.");
1055
1056        assert!(aac_codec_all.supports(&aac_codec_mpeg2));
1057        assert!(aac_codec_all.supports(&aac_codec_mpeg4));
1058        assert!(!aac_codec_mpeg2.supports(&aac_codec_mpeg4));
1059        assert!(!aac_codec_mpeg4.supports(&aac_codec_mpeg2));
1060
1061        let aac_codec_not_vbr = AacCodecInfo::new(
1062            AacObjectType::MPEG4_AAC_LC,
1063            AacSamplingFrequency::all(),
1064            AacChannels::ONE,
1065            false,
1066            8388607, // Largest 23-bit bit rate.
1067        )
1068        .expect("Error creating aac media codec info.");
1069
1070        assert!(!aac_codec_not_vbr.supports(&aac_codec_mpeg4));
1071
1072        let aac_codec_bitrate_not_known = AacCodecInfo::new(
1073            AacObjectType::MPEG4_AAC_LC,
1074            AacSamplingFrequency::all(),
1075            AacChannels::ONE,
1076            true,
1077            0, // Bitrate "Not known"
1078        )
1079        .expect("Error creating aac media codec info.");
1080
1081        assert!(aac_codec_bitrate_not_known.supports(&aac_codec_not_vbr));
1082    }
1083}