diff options
author | George Kiagiadakis <george.kiagiadakis@collabora.co.uk> | 2011-01-12 03:06:05 +0200 |
---|---|---|
committer | George Kiagiadakis <george.kiagiadakis@collabora.co.uk> | 2011-01-12 03:06:05 +0200 |
commit | f2e0e9ab98b6acfa9092e9abf541af3b911a5fd6 (patch) | |
tree | b11840f566b5801a25b7af2e825a48980da0ea73 /src/QGst/bus.cpp | |
parent | c5758f7dd4e6b47cca5f443cd422a0c029c881f8 (diff) |
Increase the bus watch timeout to 50 ms.
Diffstat (limited to 'src/QGst/bus.cpp')
-rw-r--r-- | src/QGst/bus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/QGst/bus.cpp b/src/QGst/bus.cpp index a56b40f..7f38e01 100644 --- a/src/QGst/bus.cpp +++ b/src/QGst/bus.cpp @@ -32,7 +32,7 @@ public: BusWatch(GstBus *bus) : QObject(), m_bus(bus) { - m_timer.start(10, this); + m_timer.start(50, this); } void stop() |