24 fps project source tape fps
MaxOmfSdk will output an Avid Film Composer style Omf from a 24fps project
This selects the format of the tape sources in the Omf
MXOMF_24_AS_30 - 30 fps (NTSC non-drop frame) (drop-frame is NOT allowed)
MXOMF_24_AS_25 Source as 25 fps (PAL)
typedef enum tape source fps from 24 fps projects
{
MXOMF_24_AS_NA = 100, // distinguish from MXOMF_FPS_ ~~~~~~~~
MXOMF_24_AS_30, // Source as 30 fps (NTSC non-drop frame)
MXOMF_24_AS_25 // Source as 25 fps (PAL)
} MXOMF_FILMTAPEFPS;
MXOMF_DATASTATUS
Command or signal indicating the type of data, or where the data
came from, in the internal SDK data
typedef enum
{
MXOMF_DATA_EMPTY,
MXOMF_DATA_EDL, //SDK contains data from an EDL
MXOMF_DATA_AES31, // obsolete
MXOMF_DATA_OMF_COMPOSITION, //SDK contains data from an OMF with composition
MXOMF_DATA_OMF_CLIP, //SDK contains data from an OMF with one or more clips
// (no composition)
MXOMF_DATA_AAF, // not implemented
MXOMF_DATA_ALE, // SDK contains data from an ALE
MXOMF_DATA_ERROR
} MXOMF_DATASTATUS;