I am trying to play video (it's large video ~20GB) and sometimes I am getting this error message:
Qt Code:
  1. DirectShowPlayerService::doRender: Unresolved error code 0x80040266 (IDispatch error #102)
To copy to clipboard, switch view to plain text mode 

And here is the code I'm using:

Qt Code:
  1. QMediaPlayer* player = new QMediaPlayer;
  2. player->setMedia(QUrl::fromLocalFile("mes.avi"));
  3.  
  4.  
  5. QVideoWidget* videoWidget = new QVideoWidget;
  6. player->setVideoOutput(videoWidget);
  7. videoWidget->show();
  8.  
  9.  
  10. player->play();
To copy to clipboard, switch view to plain text mode 

I think this is some specific message since google don't help me in this case.

Does someone have an idea what this could be?