summaryrefslogtreecommitdiff
path: root/src/simplertp.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/simplertp.cc')
-rw-r--r--src/simplertp.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/simplertp.cc b/src/simplertp.cc
index 837bec5..eea3ebd 100644
--- a/src/simplertp.cc
+++ b/src/simplertp.cc
@@ -34,11 +34,13 @@ int main(int argc, char *argv[])
QString v4ldev = "/dev/video0";
QString adev = "hw:2,0";
+ QHostAddress addr("192.168.0.10");
+ quint16 port = 10000;
if(argc > 1) v4ldev = argv[1];
if(argc > 2) adev = argv[2];
- MainWindow wnd(v4ldev, adev);
+ MainWindow wnd(v4ldev, adev, addr, port);
wnd.show();
return app.exec();