static bool SF_CDECL LoadVideoInfo(const char* pfilename, VideoInfo* info, FileOpenerBase* popener);
LoadVideoInfo reads the video file header and obtains information such as height, width, cue points etc on the video file without playing the file. This might be used for checking the availability of the video file for playing.
Parameters |
Description |
const char* pfilename |
Path of the video file from which information is retrieved. |
VideoInfo* info |
Pointer to VideoInfo which gathers the information. |
FileOpenerBase* popener |
Pointer to the FileOpenerBase interface for opening the file. |
A Boolean value of true if the information is retrieved successfully; otherwise false.