VVC codec detected as Video in GUI

This commit is contained in:
jcdr428 2022-07-01 18:08:10 +01:00 committed by GitHub
parent 906638bdfb
commit e7968e1c2a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ QString unquoteStr(QString val)
bool isVideoCodec(const QString &displayName)
{
return displayName == "H.264" || displayName == "MVC" || displayName == "VC-1" || displayName == "MPEG-2" ||
displayName == "HEVC";
displayName == "HEVC" || displayName == "VVC";
}
QString floatToTime(double time, char msSeparator = '.')