Files
oak-editor/app/dialog/sequence/sequencepreset.h
T
itsmattkc 430561e2ac sequence: made divider a sequence parameter rather than a viewer parameter
Doing this makes the preview resolution an explicit project setting rather
than a temporary UI setting. This will allow more consistency when caching.
2020-06-08 14:41:35 +10:00

23 lines
383 B
C

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