mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-02 20:42:30 +00:00
m3u8: Fix parsing EXT-X-DISCONTINUITY
EXT-X-DISCONTINUITY tag should have no trailing ":" character https://bugzilla.gnome.org/show_bug.cgi?id=780179
This commit is contained in:
parent
16dd0e693d
commit
b8344ea997
1 changed files with 1 additions and 1 deletions
|
@ -605,7 +605,7 @@ gst_m3u8_update (GstM3U8 * self, gchar * data)
|
|||
self->discont_sequence = val;
|
||||
discontinuity = TRUE;
|
||||
}
|
||||
} else if (g_str_has_prefix (data_ext_x, "DISCONTINUITY:")) {
|
||||
} else if (g_str_has_prefix (data_ext_x, "DISCONTINUITY")) {
|
||||
self->discont_sequence++;
|
||||
discontinuity = TRUE;
|
||||
} else if (g_str_has_prefix (data_ext_x, "PROGRAM-DATE-TIME:")) {
|
||||
|
|
Loading…
Reference in a new issue