flowly_flv/header.rs
1#[derive(Default, Debug, Clone, PartialEq)]
2pub struct FlvHeader {
3 /// The version of the FLV file.
4 pub version: u8,
5
6 /// Whether the FLV file contains audio tags.
7 pub is_audio_present: bool,
8
9 /// Whether the FLV file contains video tags.
10 pub is_video_present: bool,
11
12 pub remaining: u32,
13}