GNOME Bugzilla – Bug 751914
dashdemux: wrong segment duration computed by gst_mpd_client_setup_representation
Last modified: 2015-08-16 13:39:47 UTC
similar with https://bugzilla.gnome.org/show_bug.cgi?id=751449: segment start and duration is not correctly set. /* here we should have a single segment for each representation, whose URL is encoded in the baseURL element */ if (!gst_mpd_client_add_media_segment (stream, NULL, 1, 0, 0, PeriodEnd, PeriodStart, PeriodEnd)) { return FALSE; } should be if (!gst_mpd_client_add_media_segment (stream, NULL, 1, 0, 0, PeriodEnd - PeriodStart, PeriodStart, PeriodEnd - PeriodStart)) {
Created attachment 306728 [details] [review] proposed patch
commit 8e82129875e422d4a17e0c655879d263cbd3eac2 Author: Florin Apostol <florin.apostol@oregan.net> Date: Fri Jul 3 17:00:31 2015 +0100 dashdemux: wrong segment duration computed by gst_mpd_client_setup_representation Corrected computation of segment start and duration. https://bugzilla.gnome.org/show_bug.cgi?id=751914