encoder/exportdialog: add compression options for H264 exporting

This commit is contained in:
itsmattkc
2020-03-03 01:47:04 +11:00
parent 796a30eda9
commit 9e8a384f14
15 changed files with 513 additions and 22 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef CODECSECTION_H
#define CODECSECTION_H
#include <QWidget>
#include "codec/encoder.h"
class CodecSection : public QWidget
{
public:
CodecSection(QWidget* parent = nullptr);
virtual void AddOpts(EncodingParams* params){}
};
#endif // CODECSECTION_H