Hi guys.

I have a problem when i’m adding a video into a scene, the colors are shifting (blue turns to red and red turns to blue).
Qt Code:
  1. test = new Phonon::VideoPlayer(0);
  2. Phonon::MediaSource source("test.avi");
  3. test->load(source);
  4.  
  5. QGraphicsView *view = new QGraphicsView(this);
  6. QGraphicsScene *scene = new QGraphicsScene(0);
  7. view->setScene(scene);
  8.  
  9. connect(view, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(rotate(QPoint)));
  10.  
  11. //scene->addEllipse(0,0,100,100,QPen(Qt::red,10), Qt::black);
  12.  
  13. film = scene->addWidget(test);
  14. film->setGeometry(QRectF(0, 0, 600, 400));
  15.  
  16. setCentralWidget(view);
  17.  
  18. test->play();
To copy to clipboard, switch view to plain text mode 
Do anybody has an idea why this is happening.

thanks

PS.: Sorry for my bad english.