The MMPMOVIEINFO structure contains information about a movie file.
typedef struct tagMMPMOVIEINFO {
DWORD dwFileVersion;
DWORD dwTotalFrames;
DWORD dwInitialFramesPerSecond;
WORD wPixelDepth;
DWORD dwMovieExtentX;
DWORD dwMovieExtentY;
char chFullMacName[128];
} MMPMOVIEINFO;
The MMPMOVIEINFO structure has the following fields:
dwFileVersion
Specifies the version of the authoring system used to create the file. The high-order word contains the major version number, and the low-order word contains the minor version number.
dwTotalFrames
Specifies the number of frames in the movie.
dwInitialFramesPerSecond
Specifies the initial tempo of the movie in frames per second. This field is set to zero if the mmpGetFileInfo function was used to retrieve the movie information.
wPixelDepth
Specifies the number of bits per pixel under which the movie was authored (either 1, 4, or 8).
dwMovieExtentX
Specifies the pixel width of the movie playback area.
dwMovieExtentY
Specifies the pixel length of the movie playback area.
chFullMacName[128]
Specifies the movie title in a NULL-terminated string.
mmpGetFileInfo, mmpGetMovieInfo