summaryrefslogtreecommitdiff
path: root/src/simplertp.cc
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2014-09-20 11:53:40 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2014-09-20 11:53:40 +0200
commit808225629721c2f7d5c751edc60e5c6744be7886 (patch)
tree3d97fc3b7319b5f94e688a454de51b32321ebfd7 /src/simplertp.cc
parent46d4e577bceb12c9463fdf4ef1d9a9a348f13543 (diff)
First (crashing) prototype.
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();