mirror of
https://github.com/brunoherbelin/vimix.git
synced 2025-12-11 18:34:58 +01:00
BugFix: give time to Save on exit and stop recordings on Quit
This commit is contained in:
@@ -79,12 +79,9 @@ void FrameGrabbing::verify(FrameGrabber **rec)
|
||||
*rec = nullptr;
|
||||
}
|
||||
|
||||
FrameGrabber *FrameGrabbing::front()
|
||||
bool FrameGrabbing::busy() const
|
||||
{
|
||||
if (grabbers_.empty())
|
||||
return nullptr;
|
||||
|
||||
return grabbers_.front();
|
||||
return !grabbers_.empty();
|
||||
}
|
||||
|
||||
struct fgId: public std::unary_function<FrameGrabber*, bool>
|
||||
|
||||
Reference in New Issue
Block a user