Dive media: add ".mov" to list of known video extensions

This was an oversight in b28dba6087.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2018-07-11 23:54:37 +02:00 committed by Lubomir I. Ivanov
parent 45c19fd11e
commit a8bfa5f053

View file

@ -1212,7 +1212,7 @@ QString localFilePath(const QString &originalFilename)
// TODO: Apparently Qt has no simple way of listing the supported video // TODO: Apparently Qt has no simple way of listing the supported video
// codecs? Do we have to query them by hand using QMediaPlayer::hasSupport()? // codecs? Do we have to query them by hand using QMediaPlayer::hasSupport()?
const QStringList videoExtensionsList = { const QStringList videoExtensionsList = {
".avi", ".mp4", ".mpeg", ".mpg", ".wmv" ".avi", ".mp4", ".mov", ".mpeg", ".mpg", ".wmv"
}; };
QStringList imageExtensionFilters() { QStringList imageExtensionFilters() {