Re: [Development] Reimplementation of HTML5 support (QtWebKit)

2015-02-03 Thread Ilya Kowalewski
I had been working on some video support for a while when I realized that
javascript events are not being sent properly. Can anyone please gimme a
tip, what's the class that takes care of dispatching events for javascript
object and where could the problem possibly be?

Thanks!

On Fri Jan 30 2015 at 9:37:33 PM Ilya Kowalewski 
illya.kovalevs...@gmail.com wrote:

 Hey there!

 My main purpose here is to reimplement some behaviour of QtWebKit on HTML5
 Video support. Am I right that there is an abstract layer between actual
 context rendering / processing and webkit abstraction for HTML5 Video
 standart?

 So what's the best place to start with there?

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] Reimplementation of HTML5 support (QtWebKit)

2015-01-31 Thread Konstantin Tokarev


30.01.2015, 22:37, Ilya Kowalewski illya.kovalevs...@gmail.com:
 Hey there!

 My main purpose here is to reimplement some behaviour of QtWebKit on HTML5 
 Video support. Am I right that there is an abstract layer between actual 
 context rendering / processing and webkit abstraction for HTML5 Video 
 standart?

 So what's the best place to start with there?

HTML-faced part of video tag implementation is in WebCore::HTMLVideoElement 
(derived from WebCore::HTMLMediaElement).

Class WebCore::MediaPlayer is a platform-independent abstraction, by means of 
whcih WebCore::HTMLMediaElement is implemented.

Different player backend are plugged into WebCore::MediaPlayer using 
inheritance from WebCore::MediaPlayerPrivate, e.g. 
WebCore::MediaPlayerPrivateQt.

If you need to change low-level aspects of video playback, you might want to 
change MediaPlayerPrivateQt or implement your own MediaPlayerPrivate (we 
successfully done the latter in our product, using in house player 
implementation).

-- 
Regards,
Konstantin
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] Reimplementation of HTML5 support (QtWebKit)

2015-01-30 Thread Ilya Kowalewski
Hey there!

My main purpose here is to reimplement some behaviour of QtWebKit on HTML5
Video support. Am I right that there is an abstract layer between actual
context rendering / processing and webkit abstraction for HTML5 Video
standart?

So what's the best place to start with there?
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development