summaryrefslogtreecommitdiff
path: root/rbutil/rbutilqt/encoders.h
diff options
context:
space:
mode:
Diffstat (limited to 'rbutil/rbutilqt/encoders.h')
-rw-r--r--rbutil/rbutilqt/encoders.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/rbutil/rbutilqt/encoders.h b/rbutil/rbutilqt/encoders.h
index 7a234a3b6f..64d57b0ff9 100644
--- a/rbutil/rbutilqt/encoders.h
+++ b/rbutil/rbutilqt/encoders.h
@@ -32,11 +32,12 @@ extern "C"
32class EncBase; 32class EncBase;
33 33
34//inits the encoder List 34//inits the encoder List
35void initEncoderList(); 35void initEncodernamesList(void);
36// function to get a specific encoder 36// function to get a specific encoder
37EncBase* getEncoder(QString encname); 37EncBase* getEncoder(QString encname);
38// get the list of encoders, nice names 38// get the list of encoders, nice names
39QStringList getEncoderList(); 39QString getEncoderName(QString encoder);
40QStringList getEncoderList(void);
40 41
41 42
42class EncBase : public QDialog 43class EncBase : public QDialog
@@ -45,7 +46,8 @@ class EncBase : public QDialog
45public: 46public:
46 EncBase(QWidget *parent ); 47 EncBase(QWidget *parent );
47 48
48 virtual bool encode(QString input,QString output){return false;} 49 virtual bool encode(QString input,QString output)
50 {(void)input; (void)output; return false;}
49 virtual bool start(){return false;} 51 virtual bool start(){return false;}
50 virtual bool stop(){return false;} 52 virtual bool stop(){return false;}
51 virtual void showCfg(){} 53 virtual void showCfg(){}