[Webkit-unassigned] [Bug 85994] [GStreamer] Source element fails with .ogg files

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Jul 4 02:03:01 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=85994





--- Comment #21 from Sergio Villar Senin <svillar at igalia.com>  2013-07-04 02:04:58 PST ---
There are a couple of very interesting things in the log. First of all we get the whole contents of the ogg in the first request.

Network LOG: < Content-Length: 329308

As far as I remember our current media code handles it very bad, because in order to intercept the request it cancels the original request (so we waste a whole file download) and asks for the resource again.

Network LOG: > GET /agomez/files/music-loop-1.ogg HTTP/1.1
Network LOG: > Range: bytes=255580-

And it does that in a very weird way, I don't know why but it starts requesting from byte 255580 till the end and after that it requests again the whole file

Network LOG: > GET /agomez/files/music-loop-1.ogg HTTP/1.1
Network LOG: > Range: bytes=1-

Definitely there is a bug in the code that selects the ranges.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list