-- Added folders in fonts
This commit is contained in:
parent
13eb54a29d
commit
8ba0c751cb
5 changed files with 100 additions and 100 deletions
|
|
@ -88,11 +88,10 @@ quint8 universe_audio;
|
|||
bool audioCheck;
|
||||
};
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
// Constructor
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
|
||||
|
||||
libreMediaServer::libreMediaServer(QStringList args, QWidget *parent)
|
||||
: QMainWindow(parent),
|
||||
m_startvideo(0),
|
||||
|
|
@ -850,9 +849,7 @@ void libreMediaServer::on_video_stateChanged(int state)
|
|||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Pure Data Video
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
// Start the PD Process, open the ports and connects stdout de Pure Data.
|
||||
|
|
@ -1362,9 +1359,7 @@ void libreMediaServer::on_audio_stateChanged(int state)
|
|||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Pure Data Audio
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
// Start the PD Process, open the ports and connects stdout de Pure Data.
|
||||
|
|
@ -1550,9 +1545,7 @@ void libreMediaServer::errorsending_audio() {
|
|||
}
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Previews
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////
|
||||
|
||||
// GUI
|
||||
|
|
@ -1561,6 +1554,7 @@ void libreMediaServer::previewMaster()
|
|||
QPixmap preview = QPixmap::grabWindow(QApplication::desktop()->winId(), ui.winpositionx->value() , ui.winpositiony->value(),ui.winsizex->value(),ui.winsizey->value());
|
||||
ui.masterPreview->setPixmap(preview);
|
||||
}
|
||||
|
||||
// CITP/MSEx 1.0
|
||||
void libreMediaServer::sendFrame()
|
||||
{
|
||||
|
|
@ -1651,12 +1645,9 @@ void libreMediaServer::on_previewLayer_stateChanged (int state)
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
///////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// Terminal and Log
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////
|
||||
////////////////////////////////////////////////////////////////////
|
||||
|
||||
// Sacamos la salida de Pure Data Audio en la terminal
|
||||
void libreMediaServer::stdout_audio() {
|
||||
|
|
@ -1735,11 +1726,7 @@ void libreMediaServer::stdout() {
|
|||
break;
|
||||
case '9':
|
||||
out.remove(0,9);
|
||||
qDebug() <<out;
|
||||
bool ok;
|
||||
int fps;
|
||||
fps = out.toInt(&ok,10);
|
||||
ui.fpsCounter->display(fps);
|
||||
ui.fpsCounter->display(out.toInt());
|
||||
break;
|
||||
default:
|
||||
qDebug()<<"stdout:Invalid cookie received"<<out;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue