summaryrefslogtreecommitdiff
path: root/client/miav_client.cc
diff options
context:
space:
mode:
Diffstat (limited to 'client/miav_client.cc')
-rw-r--r--client/miav_client.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/miav_client.cc b/client/miav_client.cc
index ff38f09..376a27e 100644
--- a/client/miav_client.cc
+++ b/client/miav_client.cc
@@ -48,11 +48,11 @@ int main(int argc, char *argv[])
MainWindow mainwindow;
Decoder decoder;
- Player player(mainwindow.getVideo());
+ Player player(mainwindow.getVideo(), &decoder);
NetworkSender sender;
decoder.start();
- player.start(500); // 25 frames / second
+ player.start(40); // 100: 10fps, 40: 25fps
sender.start();
return app.exec();