forked from scottlamb/retina
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from kfuseini/main
H265: Check not in FU before calling finalize and check pieces bounds before indexing
- Loading branch information
Showing
1 changed file
with
13 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
// Copyright (C) 2021 Scott Lamb <[email protected]> | ||
// SPDX-License-Identifier: MIT OR Apache-2.0 | ||
|
||
//! [H.265]-encoded video. | ||
use std::convert::TryFrom; | ||
use std::fmt::Write; | ||
|
||
use base64::Engine; | ||
use bytes::{Buf, BufMut, Bytes, BytesMut}; | ||
use hevc_parser::hevc::{NalHeader, UnitType}; | ||
use log::{debug, log_enabled, trace}; | ||
|
@@ -167,7 +171,7 @@ impl Depacketizer { | |
.last() | ||
.ok_or("nals should not be empty".to_string())? | ||
.hdr; | ||
if can_end_au(last_nal_hdr.nal_unit_type()) { | ||
if !access_unit.in_fu && can_end_au(last_nal_hdr.nal_unit_type()) { | ||
access_unit.end_ctx = *pkt.ctx(); | ||
self.pending = | ||
Some(self.finalize_access_unit(access_unit, "ts change")?); | ||
|
@@ -436,6 +440,9 @@ impl Depacketizer { | |
} | ||
for nal in &self.nals { | ||
let next_piece_idx = usize::try_from(nal.next_piece_idx).expect("u32 fits in usize"); | ||
if next_piece_idx > self.pieces.len() { | ||
return Err("Incomplete buffered nals finalizing access unit".into()); | ||
} | ||
let nal_pieces = &self.pieces[piece_idx..next_piece_idx]; | ||
match nal.hdr.nal_unit_type() { | ||
UnitType::NalVps => { | ||
|
@@ -620,9 +627,11 @@ impl InternalParameters { | |
if !matches!(key, "sprop-sps" | "sprop-pps" | "sprop-vps") { | ||
continue; | ||
} | ||
let nal = base64::decode(value).map_err(|_| { | ||
"bad parameter: NAL has invalid base64 encoding".to_string() | ||
})?; | ||
let nal = base64::engine::general_purpose::STANDARD | ||
.decode(value) | ||
.map_err(|_| { | ||
"bad parameter: NAL has invalid base64 encoding".to_string() | ||
})?; | ||
if nal.is_empty() { | ||
return Err(format!("bad parameter {key}: empty NAL")); | ||
} | ||
|