1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-06-02 04:49:50 +00:00
hls_m3u8/src/tags/shared/mod.rs
2020-02-10 13:21:48 +01:00

14 lines
587 B
Rust

//! The tags in this section can appear in either Master Playlists or
//! Media Playlists. If one of these tags appears in a Master Playlist,
//! it should not appear in any Media Playlist referenced by that Master
//! Playlist. A tag that appears in both must have the same value;
//! otherwise, clients should ignore the value in the Media Playlist(s).
//!
//! These tags must not appear more than once in a Playlist. If a tag
//! appears more than once, clients must fail to parse the Playlist.
mod independent_segments;
mod start;
pub use independent_segments::*;
pub use start::*;