PDA

View Full Version : QT-Phonon Immage freezes



ma.giorgio
28th April 2010, 17:47
Hi,

I installed on my device phonon support and I realize a small test
program like this:

......
......
window = new QWidget;
QWidget *video = new QWidget;

Phonon::VideoPlayer *myPlayer= new
Phonon::VideoPlayer(Phonon::VideoCategory, video);

QVBoxLayout *layout = new QVBoxLayout;

layout->addWidget(myPlayer);
window->setLayout(layout);

myPlayer->play(filename);

window->show();
......
......

The video starts but after a few seconds the image is stopped
(completely frozen) while the audio continues without any problems.
This happens every time I run a video.

Someone can give me a hint?

Giorgio