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
use super::DescriptorError;
use crate::descriptor::descriptor_len;
use std::fmt;
pub struct AvcVideoDescriptor<'buf> {
buf: &'buf [u8],
}
impl<'buf> AvcVideoDescriptor<'buf> {
pub const TAG: u8 = 40;
pub fn new(tag: u8, buf: &'buf [u8]) -> Result<AvcVideoDescriptor<'buf>, DescriptorError> {
assert_eq!(tag, Self::TAG);
descriptor_len(buf, tag, 4)?;
Ok(AvcVideoDescriptor { buf })
}
pub fn profile_idc(&self) -> u8 {
self.buf[0]
}
pub fn constraint_set0_flag(&self) -> bool {
self.buf[1] & 0b1000_0000 != 0
}
pub fn constraint_set1_flag(&self) -> bool {
self.buf[1] & 0b0100_0000 != 0
}
pub fn constraint_set2_flag(&self) -> bool {
self.buf[1] & 0b0010_0000 != 0
}
pub fn constraint_set3_flag(&self) -> bool {
self.buf[1] & 0b0001_0000 != 0
}
pub fn constraint_set4_flag(&self) -> bool {
self.buf[1] & 0b0000_1000 != 0
}
pub fn constraint_set5_flag(&self) -> bool {
self.buf[1] & 0b0000_0100 != 0
}
pub fn avc_compatible_flags(&self) -> u8 {
self.buf[1] & 0b0000_0011
}
pub fn level_idc(&self) -> u8 {
self.buf[2]
}
pub fn avc_still_present(&self) -> bool {
self.buf[3] & 0b1000_0000 != 0
}
pub fn avc_24_hour_picture_flag(&self) -> bool {
self.buf[3] & 0b0100_0000 != 0
}
pub fn frame_packing_sei_not_present_flag(&self) -> bool {
self.buf[3] & 0b0010_0000 != 0
}
}
impl fmt::Debug for AvcVideoDescriptor<'_> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> Result<(), fmt::Error> {
f.debug_struct("AvcVideoDescriptor")
.field("profile_idc", &self.profile_idc())
.field("constraint_set0_flag", &self.constraint_set0_flag())
.field("constraint_set1_flag", &self.constraint_set1_flag())
.field("constraint_set2_flag", &self.constraint_set2_flag())
.field("constraint_set3_flag", &self.constraint_set3_flag())
.field("constraint_set4_flag", &self.constraint_set4_flag())
.field("constraint_set5_flag", &self.constraint_set5_flag())
.field("avc_compatible_flags", &self.avc_compatible_flags())
.field("level_idc", &self.level_idc())
.field("avc_still_present", &self.avc_still_present())
.field("avc_24_hour_picture_flag", &self.avc_24_hour_picture_flag())
.field(
"frame_packing_sei_not_present_flag",
&self.frame_packing_sei_not_present_flag(),
)
.finish()
}
}
#[cfg(test)]
mod test {
use super::super::{CoreDescriptors, Descriptor};
use assert_matches::assert_matches;
use hex_literal::*;
#[test]
fn descriptor() {
let data = hex!("280442c01e3f");
let desc = CoreDescriptors::from_bytes(&data[..]).unwrap();
assert_matches!(desc, CoreDescriptors::AvcVideo(avc_video) => {
assert_eq!(avc_video.level_idc(), 30);
assert_eq!(avc_video.constraint_set0_flag(), true);
assert_eq!(avc_video.constraint_set1_flag(), true);
assert_eq!(avc_video.constraint_set3_flag(), false);
assert_eq!(avc_video.constraint_set4_flag(), false);
assert_eq!(avc_video.constraint_set5_flag(), false);
assert_eq!(avc_video.avc_compatible_flags(), 0);
assert_eq!(avc_video.profile_idc(), 66);
assert_eq!(avc_video.avc_still_present(), false);
assert_eq!(avc_video.avc_24_hour_picture_flag(), false);
assert_eq!(avc_video.frame_packing_sei_not_present_flag(), true);
})
}
#[test]
fn debug() {
let data = hex!("280442c01e3f");
let desc = CoreDescriptors::from_bytes(&data[..]).unwrap();
assert_matches!(desc, CoreDescriptors::AvcVideo(avc_video) => {
assert!(!format!("{:?}", avc_video).is_empty());
});
}
}