1use bitfield::bitfield;
6use bitflags::bitflags;
7use bt_avdtp as avdtp;
8
9bitflags! {
10 #[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 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 #[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 #[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 #[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 #[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 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 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 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 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 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 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 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 #[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 #[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 let ordered = [Self::FREQ96000HZ, Self::FREQ48000HZ, Self::FREQ44100HZ];
353 ordered.iter().find(|freq| self.contains(**freq)).copied()
354 }
355}
356
357bitflags! {
358 #[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 #[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 struct AacCodecInfoBits(u64);
401 impl Debug;
402 u8;
403 u32, bitrate, set_bitrate: 22, 0;
404 vbr, set_vbr: 23, 23;
405 channels, set_channels: 27,26;
407 u16, sampling_frequency, set_sampling_frequency: 39, 28;
408 object_type, set_object_type: 47, 40;
409 }
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 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 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 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 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 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 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 let bitrate = match (a.bitrate(), b.bitrate()) {
540 (0, 0) => 128000,
542 (0, b) => b,
543 (a, 0) => a,
544 (a, b) => std::cmp::min(a, b),
545 };
546 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 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 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 fn test_sbc_codec_info() {
587 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 let res = SbcCodecInfo::try_from(&codec_extra[..]).expect("created codec info");
604 assert_eq!((res.0).0, (sbc_codec_info.0).0);
605
606 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 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 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, SbcCodecInfo::BITPOOL_MAX, )
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 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, );
660 assert!(sbc_codec_info.is_err());
661
662 let sbc_codec_info = SbcCodecInfo::new(
664 SbcSamplingFrequency::all(),
665 SbcChannelMode::all(),
666 SbcBlockCount::all(),
667 SbcSubBands::all(),
668 SbcAllocation::all(),
669 0, 240,
671 );
672 assert!(sbc_codec_info.is_err());
673
674 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 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, SbcCodecInfo::BITPOOL_MAX, )
730 .expect("Couldn't create sbc media codec info.");
731 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, SbcCodecInfo::BITPOOL_MAX, )
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, 53, )
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 assert!(!sbc_codec_48.supports(&sbc_codec_441));
761 assert!(!sbc_codec_441.supports(&sbc_codec_48));
762
763 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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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, SbcCodecInfo::BITPOOL_MAX, )
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 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 let aac_codec_info = AacCodecInfo::new(
888 AacObjectType::all(),
889 AacSamplingFrequency::all(),
890 AacChannels::all(),
891 true,
892 8388607, )
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 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 let aac_codec_info = AacCodecInfo::new(
914 AacObjectType::MANDATORY_SNK,
915 AacSamplingFrequency::MANDATORY_SNK,
916 AacChannels::MANDATORY_SNK,
917 true,
918 0xAAFF, )
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 let res = AacCodecInfo::try_from(&codec_extra[..]).expect("created codec info");
927 assert_eq!((res.0).0, (aac_codec_info.0).0);
928
929 let aac_codec_info = AacCodecInfo::new(
931 AacObjectType::MANDATORY_SRC,
932 AacSamplingFrequency::FREQ44100HZ,
933 AacChannels::ONE,
934 false, 0xAAFF, )
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 let aac_codec_info = AacCodecInfo::new(
944 AacObjectType::MANDATORY_SRC,
945 AacSamplingFrequency::FREQ44100HZ,
946 AacChannels::TWO,
947 false, 0xAAFF, )
950 .expect("Error creating aac media codec info.");
951 assert_matches!(aac_codec_info.channel_count(), Ok(2));
952
953 let aac_codec_info = AacCodecInfo::new(
955 AacObjectType::MANDATORY_SRC,
956 AacSamplingFrequency::FREQ44100HZ,
957 AacChannels::ONE,
958 false,
959 0xFFFFFF, );
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 let aac_codec_all = AacCodecInfo::new(
975 AacObjectType::all(),
976 AacSamplingFrequency::all(),
977 AacChannels::all(),
978 true,
979 8388607, )
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, )
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, )
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 assert!(!aac_codec_441.supports(&aac_codec_48));
1008 assert!(!aac_codec_48.supports(&aac_codec_441));
1009
1010 assert!(!aac_codec_441.supports(&aac_codec_all));
1012
1013 let aac_codec_chan_one = AacCodecInfo::new(
1015 AacObjectType::all(),
1016 AacSamplingFrequency::all(),
1017 AacChannels::ONE,
1018 true,
1019 8388607, )
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, )
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 let aac_codec_mpeg2 = AacCodecInfo::new(
1039 AacObjectType::MPEG2_AAC_LC,
1040 AacSamplingFrequency::all(),
1041 AacChannels::ONE,
1042 true,
1043 8388607, )
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, )
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, )
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, )
1079 .expect("Error creating aac media codec info.");
1080
1081 assert!(aac_codec_bitrate_not_known.supports(&aac_codec_not_vbr));
1082 }
1083}