1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-05-25 11:48:10 +00:00

improve documentation of ExtXIndependentSegments

This commit is contained in:
Luro02 2020-02-24 16:16:40 +01:00
parent dc12db9fad
commit f7d81a55c9
No known key found for this signature in database
GPG key ID: B66FD4F74501A9CF

View file

@ -5,13 +5,8 @@ use crate::types::ProtocolVersion;
use crate::utils::tag;
use crate::{Error, RequiredVersion};
/// # [4.3.5.1. EXT-X-INDEPENDENT-SEGMENTS]
///
/// The [`ExtXIndependentSegments`] tag signals that all media samples in a
/// [`MediaSegment`] can be decoded without information from other segments.
///
/// [4.3.5.1. EXT-X-INDEPENDENT-SEGMENTS]:
/// https://tools.ietf.org/html/rfc8216#section-4.3.5.1
/// Signals that all media samples in a [`MediaSegment`] can be decoded without
/// information from other segments.
///
/// [`MediaSegment`]: crate::MediaSegment
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Ord, PartialOrd)]