Files
oak-editor/app/dialog/sequence/sequencepreset.h
T
itsmattkc 532af463f0 sequencedialog: extended sequence dialog to include presets
Also includes the ability to make custom presets which negates the need for
setting default sequence parameters in preferences.
2020-06-08 03:12:54 +10:00

20 lines
290 B
C

#ifndef SEQUENCEPARAM_H
#define SEQUENCEPARAM_H
#include "common/rational.h"
OLIVE_NAMESPACE_ENTER
struct SequencePreset {
QString name;
int width;
int height;
rational frame_rate;
int sample_rate;
uint64_t channel_layout;
};
OLIVE_NAMESPACE_EXIT
#endif // SEQUENCEPARAM_H