Bug 183002

Summary: [GStreamer] HTTP totalBytes query returns 0 after seeking (sometimes)
Product: WebKit Reporter: Philippe Normand <pnormand>
Component: PlatformAssignee: Philippe Normand <pnormand>
Status: RESOLVED FIXED    
Severity: Normal CC: calvaris, eocanha, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: Other   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch calvaris: review+, calvaris: commit-queue-

Description Philippe Normand 2018-02-21 07:31:01 PST
The size attribute is reset when the element performs seeks, I don't see why that would make sense. Also it's useless to handle the DURATION query if the appsrc size is correctly set (once) in the first place.
Comment 1 Philippe Normand 2018-02-21 07:35:47 PST
Created attachment 334375 [details]
Patch
Comment 2 Enrique Ocaña 2018-02-22 01:11:54 PST
Comment on attachment 334375 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=334375&action=review

Apart from the nitpick below, I don't see anything wrong with the patch.

> Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:86
> +    gboolean haveSize;

This attribute is only for internal usage and doesn't interact with Glib. Why not using a C++ bool type, like for "paused" or "isSeeking"?
Comment 3 Xabier Rodríguez Calvar 2018-02-22 01:14:09 PST
Comment on attachment 334375 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=334375&action=review

>> Source/WebCore/platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:86
>> +    gboolean haveSize;
> 
> This attribute is only for internal usage and doesn't interact with Glib. Why not using a C++ bool type, like for "paused" or "isSeeking"?

I was going to mention exactly the same thing :)
Comment 4 Philippe Normand 2018-02-23 02:07:00 PST
Committed r228945: <https://trac.webkit.org/changeset/228945>
Comment 5 Radar WebKit Bug Importer 2018-02-23 02:07:20 PST
<rdar://problem/37820322>