Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 556 Bytes

CHANGELOG.md

File metadata and controls

15 lines (10 loc) · 556 Bytes

hls_m3u8

{next}

  • Performance improvements:

    • Changed MediaPlaylist::segments from BTreeMap<usize, MediaSegment> to StableVec<MediaSegment>
    • Added perf feature, which can be used to improve performance in the future
    • Changed all instances of String to Cow<'a, str> to reduce Clone-ing.
  • Most structs now implement TryFrom<&'a str> instead of FromStr.