| |
| |
| #ifndef AVI_CODEC_RESTRICTIONS |
| #define AVI_CODEC_RESTRICTIONS |
| |
| #include "tcommon.h" |
| #include "tgeometry.h" |
| #include <QString> |
| #include <QMap> |
| #include <QObject> |
| |
| #undef DVAPI |
| #undef DVVAR |
| #ifdef TOONZLIB_EXPORTS |
| #define DVAPI DV_EXPORT_API |
| #define DVVAR DV_EXPORT_VAR |
| #else |
| #define DVAPI DV_IMPORT_API |
| #define DVVAR DV_IMPORT_VAR |
| #endif |
| |
| namespace AviCodecRestrictions |
| { |
| |
| |
| void DVAPI getRestrictions(const wstring &codecName, QString &restrictions); |
| |
| bool DVAPI canWriteMovie(const wstring &codecName, const TDimension &resolution); |
| |
| QMap<wstring, bool> DVAPI getUsableCodecs(const TDimension &resolution); |
| |
| bool DVAPI canBeConfigured(const wstring &codecName); |
| |
| void DVAPI openConfiguration(const wstring &codecName, void *winId); |
| } |
| |
| #endif; |
| |