Phonon VideoPlayer does not clear screen after a new media source is loaded
-
Hello,
I am writing an application for Windows and Mac OS X using Phonon for video and audio playback.
Now I have the following problem:
Whenever I open an audio file after a video has been displayed the last frame of the video stays visible.I use Qt library 4.8.3 and the default Phonon backends (DS9 on Windows and QT on Mac OS X).
I use to following MediaObject functions to open the new file:
@
stop();
clear();
setCurrentSource(filename);
@On Windows the widget is cleared after a resize, on Mac OS X even this does not work.
Does anybody have a solution for this?