PDA

View Full Version : Issue in playing animated webp files using QMovie



sumarka
19th May 2016, 09:13
Hi,
I am trying to play an animated webp file using QMovie. Its giving InvalidDataError. Here is the code snippet:

m_movie = new QMovie();
m_movie->setFileName(path);
if (m_movie->isValid())
{
m_movie->start();
}

My system configuration is:

Qt version: 5.6.0
OS: QNX
CPU: ARMV7


Any idea about the potential cause?