mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-19 05:10:00 +01:00
added log message
This commit is contained in:
@@ -851,6 +851,8 @@ void AC_MainWindow::comboFilterChanged(int) {
|
|||||||
if(filter_single->isChecked() && text.find("SubFilter") != std::string::npos)
|
if(filter_single->isChecked() && text.find("SubFilter") != std::string::npos)
|
||||||
Log(tr("Set a SubFilter to use this filter\n"));
|
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"));
|
||||||
}
|
}
|
||||||
|
|
||||||
void AC_MainWindow::setFilterSingle() {
|
void AC_MainWindow::setFilterSingle() {
|
||||||
|
|||||||
@@ -159,6 +159,13 @@ unsigned long Playback::allocatedFrames() {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
unsigned long Playback::getMaxAlloc() {
|
||||||
|
mutex.lock();
|
||||||
|
unsigned long l = ac::getMaxAllocated();
|
||||||
|
mutex.unlock();
|
||||||
|
return l;
|
||||||
|
}
|
||||||
|
|
||||||
void Playback::setWaitColorLevel(int w, int l) {
|
void Playback::setWaitColorLevel(int w, int l) {
|
||||||
mutex.lock();
|
mutex.lock();
|
||||||
ac::setVariableWait(w);
|
ac::setVariableWait(w);
|
||||||
|
|||||||
@@ -66,6 +66,7 @@ public:
|
|||||||
void setMaxAlloc(int a);
|
void setMaxAlloc(int a);
|
||||||
unsigned int getObjectSize();
|
unsigned int getObjectSize();
|
||||||
unsigned long allocatedFrames();
|
unsigned long allocatedFrames();
|
||||||
|
unsigned long getMaxAlloc();
|
||||||
void setWaitColorLevel(int c, int l);
|
void setWaitColorLevel(int c, int l);
|
||||||
void setColorMap(int c);
|
void setColorMap(int c);
|
||||||
void setPngPath(std::string path);
|
void setPngPath(std::string path);
|
||||||
|
|||||||
Reference in New Issue
Block a user