mirror of
https://github.com/vale981/Taevitas
synced 2025-03-05 09:31:42 -05:00
setlcd
This commit is contained in:
parent
425572d100
commit
5c4f071294
2 changed files with 1 additions and 6 deletions
|
@ -304,6 +304,7 @@ void MainWindow::startStopRecording() {
|
|||
}
|
||||
}
|
||||
|
||||
qDebug() << recorder.frameNumber();
|
||||
// FIXME: Why doesn't that work?
|
||||
setLcd();
|
||||
setStatus( RECORDING );
|
||||
|
|
|
@ -53,7 +53,6 @@ void Recorder::newRecording( QString r_name ) {
|
|||
return;
|
||||
}
|
||||
|
||||
qDebug() << "here";
|
||||
bool statExists = QFile( record_dir.path() + "/" + ".stat" ).exists();
|
||||
|
||||
// get Status file
|
||||
|
@ -63,7 +62,6 @@ void Recorder::newRecording( QString r_name ) {
|
|||
return;
|
||||
}
|
||||
|
||||
qDebug() << "here2";
|
||||
if ( !statExists ) {
|
||||
statFile->write( "0" );
|
||||
}
|
||||
|
@ -71,8 +69,6 @@ void Recorder::newRecording( QString r_name ) {
|
|||
frame_n = 0;
|
||||
time_c = 0;
|
||||
|
||||
qDebug() << "here3";
|
||||
|
||||
// If append, figure out Frame count etc...
|
||||
if ( append ) {
|
||||
if ( !restoreRecording() ) {
|
||||
|
@ -82,8 +78,6 @@ void Recorder::newRecording( QString r_name ) {
|
|||
time_c = frame_n / options.frameRate;
|
||||
}
|
||||
|
||||
qDebug() << frameNumber();
|
||||
|
||||
// open AVI in recorder
|
||||
Error f_err;
|
||||
f_err = recorder.AVIOpen( ( record_dir.path() + "/" + recName + "_" + QString::number( frame_n ) + ".avi" ).toStdString().c_str(), &options );
|
||||
|
|
Loading…
Add table
Reference in a new issue