Skip to content

Commit c9a229e

Browse files
authored
fix(eac3): make box members public (#59)
Inadvertently missed from previous commit
1 parent cab31e3 commit c9a229e

File tree

1 file changed

+2
-2
lines changed
  • src/moov/trak/mdia/minf/stbl/stsd

1 file changed

+2
-2
lines changed

src/moov/trak/mdia/minf/stbl/stsd/eac3.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ pub struct Ec3IndependentSubstream {
5454
#[derive(Debug, Clone, PartialEq, Eq)]
5555
#[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
5656
pub struct Ec3SpecificBox {
57-
data_rate: u16,
58-
substreams: Vec<Ec3IndependentSubstream>,
57+
pub data_rate: u16,
58+
pub substreams: Vec<Ec3IndependentSubstream>,
5959
}
6060

6161
impl Atom for Ec3SpecificBox {

0 commit comments

Comments
 (0)