diff options
Diffstat (limited to 'client/decoder.h')
-rw-r--r-- | client/decoder.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/client/decoder.h b/client/decoder.h index 99cdd58..50c0307 100644 --- a/client/decoder.h +++ b/client/decoder.h @@ -36,7 +36,12 @@ #include "dv.h" #include "networksender.h" -#include "status.h" +#include <vector> + +typedef struct { + double fps; + int queuelen; +} thread_status_t; class Decoder : public QThread { @@ -55,7 +60,7 @@ public: void pframeAcquire(); void pframeRelease(); - Status status(); + std::vector<thread_status_t> status(); protected: bool eventFilter(QObject *o, QEvent *e); |