Files
oak-editor/global/rational.h
T
2019-05-17 18:19:16 +10:00

15 lines
311 B
C++

#ifndef RATIONAL_H
#define RATIONAL_H
#include <libavformat/avformat.h>
namespace olive {
/**
* Rational type for timeline values. Currently we just use FFmpeg's AVRational for ease but we can change this
* later if we want.
*/
using rational = AVRational;
};
#endif // RATIONAL_H