Home | History | Annotate | Download | only in filters

Lines Matching refs:nal_unit_type

15 static bool IsAccessUnitBoundaryNal(int nal_unit_type) {
18 if (nal_unit_type == 6 || // Supplemental enhancement information
19 nal_unit_type == 7 || // Picture parameter set
20 nal_unit_type == 8 || // Sequence parameter set
21 nal_unit_type == 9 || // Access unit delimiter
22 (nal_unit_type >= 14 && nal_unit_type <= 18)) { // Reserved types
137 // five least significant bits of first NAL unit byte signify nal_unit_type
138 int nal_unit_type = *input & 0x1F;
140 IsAccessUnitBoundaryNal(nal_unit_type)) {
283 // nal_unit_type.
284 int nal_unit_type = *inscan & 0x1F;
288 if (IsAccessUnitBoundaryNal(nal_unit_type)) {