1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
//! Definitions of types and constants for values defined by
//! [ISO/IEC 14496 part 3 (Audio)](https://en.wikipedia.org/wiki/MPEG-4_Part_3).
//!
//! Currently supported,
//!
//! - [`AudioObjectType`](struct.AudioObjectType.html)
use std::convert::TryFrom;
use std::fmt;
/// Represents an error converting a `u8` into an `AudioObjectType`
#[derive(PartialEq, Debug)]
pub enum AudioObjectTypeError {
/// Tried to convert the 'escape value', `31`, into an `AudioObjectType` (this is not a legitimate
/// AOT value but instead is used as part of encoding the field value.
EscapeValue,
/// Only values 95 and under can be legitimate Audio Object Types.
TooLarge(u8),
}
/// Represents an
/// [audio object type](https://en.wikipedia.org/wiki/MPEG-4_Part_3#MPEG-4_Audio_Object_Types)
/// indicator value.
///
/// This type can be constructed from a `u8`,
///
/// ```rust
/// # use mpeg4_audio_const::*;
/// # use std::convert::TryFrom;
/// assert_eq!(AudioObjectType::AAC_LC, AudioObjectType::try_from(2).unwrap());
/// assert_eq!(2u8, AudioObjectType::AAC_LC.into());
/// ```
///
/// and will accept values that are 'reserved' in the spec,
///
/// ```rust
/// # use mpeg4_audio_const::*;
/// # use std::convert::TryFrom;
/// assert_eq!("RESERVED(95)", format!("{:?}", AudioObjectType::try_from(95).unwrap()));
/// ```
///
/// but disallows values that can't legitimately be represented because they are too large
/// (the maximum representable a-o-t value is `96`) and also disallows the 'escape value' (value
/// `31` see [`AOT_ESCAPE_VALUE`](constant.ESCAPE_VALUE.html)) which is used as part of the
/// encoding scheme for the a-o-t field rather than as a distinct field value.
///
/// ```rust
/// # use mpeg4_audio_const::*;
/// # use std::convert::TryFrom;
/// assert_eq!(Err(AudioObjectTypeError::EscapeValue), AudioObjectType::try_from(31));
/// assert_eq!(Err(AudioObjectTypeError::TooLarge(97)), AudioObjectType::try_from(97));
/// ```
#[derive(Eq, PartialEq, Copy, Clone)]
pub struct AudioObjectType(u8);
/// This value, `31`, is not used as an _audio object type_, but is instead used in the encoding of
/// any _audio object type_ value greater than or equal to `32`.
pub const AOT_ESCAPE_VALUE: u8 = 0b_11111;
impl From<AudioObjectType> for u8 {
fn from(v: AudioObjectType) -> Self {
v.0
}
}
impl TryFrom<u8> for AudioObjectType {
type Error = AudioObjectTypeError;
fn try_from(value: u8) -> Result<Self, Self::Error> {
match value {
AOT_ESCAPE_VALUE => Err(AudioObjectTypeError::EscapeValue),
96..=255 => Err(AudioObjectTypeError::TooLarge(value)),
_ => Ok(AudioObjectType(value)),
}
}
}
macro_rules! implement_aot {
(
$( $tag:literal $id:ident $desc:literal ),* ,
) => {
impl AudioObjectType {
$(
#[doc=$desc]
pub const $id: AudioObjectType = AudioObjectType($tag);
)*
}
impl fmt::Debug for AudioObjectType {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self.0 {
$(
$tag => write!(f, "{}({})", stringify!($id), $tag)
),* ,
_ => write!(f, "RESERVED({})", self.0),
}
}
}
}
}
implement_aot! {
0 NULL "Null",
1 AAC_MAIN "AAC main",
3 AAC_SSR "AAC SSR",
4 AAC_LTP "AAC LTP",
7 TWIN_VQ "TwinVQ",
8 CELP "CELP",
9 HVXC "HVXC",
5 SBR "SBR",
6 AAC_SCALABLE "AAC Scalable",
2 AAC_LC "AAC LC",
12 TTSI "TTSI",
13 MAIN_SYNTHETIC "Main synthetic",
14 WAVETABLE_SYNTHESIS "Wavetable synthesis",
15 GENERAL_MIDI "General MIDI",
16 ALGORITHMIC_SYNTHESIS_AND_AUDIO_FX "Algorithmic Synthesis and Audio FX",
17 ER_AAC_LC "ER AAC LC",
19 ER_AAC_LTP "ER AAC LTP",
20 ER_AAC_SCALABLE "ER AAC Scalable",
21 ER_TWIN_VQ "ER TwinVQ",
22 ER_BSAC "ER BSAC",
23 ER_AAC_LD "ER AAC LD",
24 ER_CELP "ER CELP",
25 ER_HVXC "ER HVXC",
26 ER_HILN "ER HILN",
27 ER_PARAMETRIC "ER Parametric",
28 SSC "SSC",
29 PS "PS",
30 MPEG_SURROUND "MPEG Surround",
// 31 - 'escape' - deliberately skipped
32 LAYER1 "Layer-1",
34 LAYER3 "Layer-3",
35 DST "DST",
36 ALS "ALS",
37 SLS "SLS",
38 SLS_NON_CORE "SLS non-core",
39 ER_AAC_ELD "ER AAC ELD",
40 SMR_SIMPLE "SMR Simple",
41 SMR_MAIN "SMR Main",
42 USAC "Unified Speech and Audio Coding",
43 SAOC "Spatial Audio Object Coding",
44 LD_MPEG_SURROUND "Low Delay MPEG Surround",
45 SAOC_DE "Spatial Audio Object Coding Dialogue Enhancement",
46 AUDIO_SYNC "Audio synchronization tool",
}
#[cfg(test)]
mod tests {
use super::*;
use std::convert::TryFrom;
#[test]
fn escape_value() {
assert_eq!(
Err(AudioObjectTypeError::EscapeValue),
AudioObjectType::try_from(AOT_ESCAPE_VALUE)
);
}
}