blob: 9ea0747d9add777a9b6d19f1c4aa1c016551161c (
plain) (
blame)
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
|
use byteorder::{BigEndian, ByteOrder};
use four_cc::FourCC;
use bytes::{BufMut, BytesMut};
use crate::{FullBoxHeader, Mp4Box, Mp4BoxError};
use std::mem::size_of;
pub struct TrackFragmentBaseMediaDecodeTimeBox {
pub base_media_decode_time: u64,
}
impl Mp4Box for TrackFragmentBaseMediaDecodeTimeBox {
const NAME: FourCC = FourCC(*b"tfdt");
fn get_full_box_header(&self) -> Option<FullBoxHeader> {
Some(FullBoxHeader::new(1, 0))
}
fn content_size(&self) -> u64 {
size_of::<u64>() as u64 // base_media_decode_time
}
fn write_box_contents(&self, writer: &mut BytesMut) -> Result<(), Mp4BoxError> {
let mut content = [0u8; 8];
BigEndian::write_u64(&mut content[..], self.base_media_decode_time);
writer.put_slice(&content);
Ok(())
}
}
|