From 2512ba324e4bfe81975938f49cf404ae9a96fe6b Mon Sep 17 00:00:00 2001 From: Alexander Ivash Date: Sat, 2 Sep 2023 16:29:42 +0200 Subject: [PATCH] speedup player filters --- Project/QtCreator/qctools-QtAVPlayer | 2 +- Source/GUI/player.cpp | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Project/QtCreator/qctools-QtAVPlayer b/Project/QtCreator/qctools-QtAVPlayer index 9d4de8aef..1d565c79d 160000 --- a/Project/QtCreator/qctools-QtAVPlayer +++ b/Project/QtCreator/qctools-QtAVPlayer @@ -1 +1 @@ -Subproject commit 9d4de8aefdb543ee6b4fb2cdb74c61b67172e8a2 +Subproject commit 1d565c79d1e9e918b1ffb645f5183cbed90b7ba0 diff --git a/Source/GUI/player.cpp b/Source/GUI/player.cpp index 43a5aa86d..c64c31118 100644 --- a/Source/GUI/player.cpp +++ b/Source/GUI/player.cpp @@ -980,6 +980,8 @@ void Player::applyFilter() combinedFilter = combinedAudioFilter; } + combinedFilter += ",format=rgb24"; + ui->plainTextEdit->appendPlainText(QString("*** filterString ***: \n\n%1").arg(combinedFilter)); setFilter(combinedFilter);