1
0
Fork 0
mirror of https://github.com/sile/hls_m3u8.git synced 2024-04-26 05:38:58 +00:00
hls_m3u8/CHANGELOG.md
2020-04-22 10:34:23 +02:00

556 B

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.