Skip to content

Commit

Permalink
Add pssh box
Browse files Browse the repository at this point in the history
  • Loading branch information
jensenn committed Dec 7, 2023
1 parent 85461b8 commit 7b82b63
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/mp4box/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
//! mvex
//! mehd
//! trex
//! pssh
//! emsg
//! moof
//! mfhd
Expand Down Expand Up @@ -98,6 +99,7 @@ pub(crate) mod moov;
pub(crate) mod mp4a;
pub(crate) mod mvex;
pub(crate) mod mvhd;
pub(crate) mod pssh;
pub(crate) mod saio;
pub(crate) mod saiz;
pub(crate) mod schi;
Expand Down Expand Up @@ -152,6 +154,7 @@ pub use moov::MoovBox;
pub use mp4a::Mp4aBox;
pub use mvex::MvexBox;
pub use mvhd::MvhdBox;
pub use pssh::PsshBox;
pub use saio::SaioBox;
pub use saiz::SaizBox;
pub use schi::SchiBox;
Expand Down Expand Up @@ -278,7 +281,8 @@ boxtype! {
TencBox => 0x74656e63,
SaizBox => 0x7361697a,
SaioBox => 0x7361696f,
SencBox => 0x73656e63
SencBox => 0x73656e63,
PsshBox => 0x70737368
}

pub trait Mp4Box: Sized {
Expand Down
16 changes: 16 additions & 0 deletions src/mp4box/moov.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ pub struct MoovBox {

#[serde(skip_serializing_if = "Option::is_none")]
pub udta: Option<UdtaBox>,

#[serde(rename = "pssh")]
pub psshs: Vec<PsshBox>,
}

impl MoovBox {
Expand All @@ -38,6 +41,9 @@ impl MoovBox {
if let Some(udta) = &self.udta {
size += udta.box_size();
}
for pssh in &self.psshs {
size += pssh.box_size();
}
size
}
}
Expand Down Expand Up @@ -70,6 +76,7 @@ impl<R: Read + Seek> ReadBox<&mut R> for MoovBox {
let mut udta = None;
let mut mvex = None;
let mut traks = Vec::new();
let mut psshs = Vec::new();

let mut current = reader.stream_position()?;
let end = start + size;
Expand Down Expand Up @@ -100,6 +107,10 @@ impl<R: Read + Seek> ReadBox<&mut R> for MoovBox {
BoxType::UdtaBox => {
udta = Some(UdtaBox::read_box(reader, s)?);
}
BoxType::PsshBox => {
let pssh = PsshBox::read_box(reader, s)?;
psshs.push(pssh);
}
_ => {
// XXX warn!()
skip_box(reader, s)?;
Expand All @@ -121,6 +132,7 @@ impl<R: Read + Seek> ReadBox<&mut R> for MoovBox {
udta,
mvex,
traks,
psshs,
})
}
}
Expand All @@ -140,6 +152,9 @@ impl<W: Write> WriteBox<&mut W> for MoovBox {
if let Some(udta) = &self.udta {
udta.write_box(writer)?;
}
for pssh in &self.psshs {
pssh.write_box(writer)?;
}
Ok(0)
}
}
Expand All @@ -158,6 +173,7 @@ mod tests {
traks: vec![],
meta: Some(MetaBox::default()),
udta: Some(UdtaBox::default()),
psshs: vec![],
};

let mut buf = Vec::new();
Expand Down
109 changes: 109 additions & 0 deletions src/mp4box/pssh.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
use serde::Serialize;
use std::io::{Read, Seek, Write};

use crate::mp4box::*;

#[derive(Debug, Clone, PartialEq, Eq, Default, Serialize)]
pub struct PsshBox {
pub version: u8,
pub system_id: [u8; 16],
pub kids: Vec<[u8; 16]>,
pub data: Vec<u8>,
}

impl PsshBox {
pub fn get_type(&self) -> BoxType {
BoxType::PsshBox
}

pub fn get_size(&self) -> u64 {
let mut s = HEADER_SIZE + HEADER_EXT_SIZE + 16;
if self.version > 0 {
s += 4 + (16 * self.kids.len() as u64);
}
s += 4 + self.data.len() as u64;
s
}
}

impl Mp4Box for PsshBox {
fn box_type(&self) -> BoxType {
self.get_type()
}

fn box_size(&self) -> u64 {
self.get_size()
}

fn to_json(&self) -> Result<String> {
Ok(serde_json::to_string(&self).unwrap())
}

fn summary(&self) -> Result<String> {
let s = format!(
"system_id={:02x?} data_size={}",
self.system_id,
self.data.len(),
);
Ok(s)
}
}

impl<R: Read + Seek> ReadBox<&mut R> for PsshBox {
fn read_box(reader: &mut R, size: u64) -> Result<Self> {
let start = box_start(reader)?;

let (version, _flags) = read_box_header_ext(reader)?;

let mut system_id = [0; 16];
reader.read_exact(&mut system_id)?;

let mut kids = Vec::new();
if version > 0 {
let kid_count = reader.read_u32::<BigEndian>()?;
kids.reserve(kid_count as usize);
for _ in 0..kid_count {
let mut kid = [0; 16];
reader.read_exact(&mut kid)?;
kids.push(kid);
}
}

let data_size = reader.read_u32::<BigEndian>()?;

let mut data = vec![0; data_size as usize];
reader.read_exact(&mut data)?;

skip_bytes_to(reader, start + size)?;

Ok(PsshBox {
version,
system_id,
kids,
data,
})
}
}

impl<W: Write> WriteBox<&mut W> for PsshBox {
fn write_box(&self, writer: &mut W) -> Result<u64> {
let size = self.box_size();
BoxHeader::new(self.box_type(), size).write(writer)?;

write_box_header_ext(writer, self.version, 0)?;

writer.write_all(&self.system_id)?;

if self.version > 0 {
writer.write_u32::<BigEndian>(self.kids.len() as u32)?;
for kid in &self.kids {
writer.write_all(kid)?;
}
}

writer.write_u32::<BigEndian>(self.data.len() as u32)?;
writer.write_all(&self.data)?;

Ok(size)
}
}

0 comments on commit 7b82b63

Please sign in to comment.