]> git.sesse.net Git - vlc/blobdiff - modules/gui/qt4/components/extended_panels.hpp
Start of the work for the audio/video/subs synchronisation
[vlc] / modules / gui / qt4 / components / extended_panels.hpp
index 08a7c29cc6c07b623d6a16f2b4d4e00ef6375d3c..0f4da973a79548d7b81eea4763128649476364a7 100644 (file)
@@ -150,4 +150,16 @@ private slots:
     void snapshot() {};
 };
 
+class SyncControls : public QWidget
+{
+    Q_OBJECT
+public:
+    SyncControls( intf_thread_t *, QWidget * );
+    virtual ~SyncControls() {};
+private:
+    intf_thread_t *p_intf;
+    QDoubleSpinBox *AVSpin;
+    QDoubleSpinBox *subsSpin;
+};
+
 #endif