mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-16 03:39:59 +01:00
add skip
This commit is contained in:
@@ -851,7 +851,9 @@ void AC_MainWindow::comboFilterChanged(int) {
|
||||
Log(tr("Set a SubFilter to use this filter\n"));
|
||||
|
||||
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
|
||||
Log(tr("Set Max Frames to greater than 1080 to use Intertwine filters"));
|
||||
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use Intertwine filters"));
|
||||
if(playback->getMaxAlloc() < 1080 && text.find("inOrder") != std::string::npos)
|
||||
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use inOrder filters"));
|
||||
}
|
||||
|
||||
void AC_MainWindow::setFilterSingle() {
|
||||
|
||||
@@ -328,6 +328,8 @@ void Playback::drawFilter(cv::Mat &frame, FilterValue &f) {
|
||||
|
||||
if(ac::getMaxAllocated() < 1080 && ac::draw_strings[f.filter].find("Intertwine") != std::string::npos)
|
||||
return;
|
||||
if(ac::getMaxAllocated() < 1080 && ac::draw_strings[f.filter].find("inOrder") != std::string::npos)
|
||||
return;
|
||||
|
||||
ac::setSubFilter(f.subfilter);
|
||||
//ac::draw_func[f.filter](frame);
|
||||
|
||||
Reference in New Issue
Block a user