mirror of
https://github.com/alfg/mp4-rust.git
synced 2025-01-08 19:15:25 +00:00
chore(mp4box): remove soun module
This commit is contained in:
parent
f5a8be435c
commit
0e81b1f70c
2 changed files with 1 additions and 31 deletions
|
@ -87,7 +87,6 @@ pub(crate) mod mp4a;
|
||||||
pub(crate) mod mvex;
|
pub(crate) mod mvex;
|
||||||
pub(crate) mod mvhd;
|
pub(crate) mod mvhd;
|
||||||
pub(crate) mod smhd;
|
pub(crate) mod smhd;
|
||||||
//pub(crate) mod soun;
|
|
||||||
pub(crate) mod stbl;
|
pub(crate) mod stbl;
|
||||||
pub(crate) mod stco;
|
pub(crate) mod stco;
|
||||||
pub(crate) mod stsc;
|
pub(crate) mod stsc;
|
||||||
|
@ -200,8 +199,7 @@ boxtype! {
|
||||||
DayBox => 0xa9646179,
|
DayBox => 0xa9646179,
|
||||||
CovrBox => 0x636f7672,
|
CovrBox => 0x636f7672,
|
||||||
DescBox => 0x64657363,
|
DescBox => 0x64657363,
|
||||||
WideBox => 0x77696465,
|
WideBox => 0x77696465
|
||||||
SounBox => 0x736F756E
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait Mp4Box: Sized {
|
pub trait Mp4Box: Sized {
|
||||||
|
|
|
@ -1,28 +0,0 @@
|
||||||
/*use serde::Serialize;
|
|
||||||
|
|
||||||
use crate::mp4box::*;
|
|
||||||
|
|
||||||
// for opus
|
|
||||||
// https://opus-codec.org/docs/opus_in_isobmff.html
|
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, Serialize)]
|
|
||||||
pub struct SounBox {}
|
|
||||||
|
|
||||||
impl Default for SounBox {
|
|
||||||
fn default() -> Self {
|
|
||||||
Self {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
impl Mp4Box for SounBox {
|
|
||||||
fn box_type(&self) -> BoxType {
|
|
||||||
BoxType::SounBox
|
|
||||||
}
|
|
||||||
|
|
||||||
fn box_size(&self) -> u64 {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn summary(&self) -> Result<String> {
|
|
||||||
todo!()
|
|
||||||
}
|
|
||||||
}*/
|
|
Loading…
Reference in a new issue