25 lines
482 B
C++
25 lines
482 B
C++
#ifndef ADVANCEDVIDEODIALOG_H
|
|
#define ADVANCEDVIDEODIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
#include "io/exportthread.h"
|
|
|
|
class QComboBox;
|
|
|
|
class AdvancedVideoDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
AdvancedVideoDialog(QWidget* parent,
|
|
int encoding_codec,
|
|
VideoCodecParams& iparams);
|
|
|
|
void accept();
|
|
private:
|
|
VideoCodecParams& params;
|
|
|
|
QComboBox* pix_fmt_combo;
|
|
};
|
|
|
|
#endif // ADVANCEDVIDEODIALOG_H
|