flv: `Tag` fields should be public.

This commit is contained in:
David Wendt 2023-04-12 19:25:57 -04:00 committed by kmeisthax
parent b2dd4d8305
commit 0c145253b6
1 changed files with 3 additions and 3 deletions

View File

@ -15,9 +15,9 @@ pub enum TagData<'a> {
#[derive(PartialEq, Debug, Clone)]
pub struct Tag<'a> {
timestamp: i32,
stream_id: u32, //24 bits max
data: TagData<'a>,
pub timestamp: i32,
pub stream_id: u32, //24 bits max
pub data: TagData<'a>,
}
impl<'a> Tag<'a> {