Navigation
API > API/Plugins > API/Plugins/BinkMediaPlayer
Enumerates available bink buffering modes.
| Name | EBinkMediaPlayerBinkBufferModes |
| Type | enum |
| Header File | /Engine/Plugins/Media/BinkMedia/Source/BinkMediaPlayer/Public/BinkMediaPlayer.h |
| Include Path | #include "BinkMediaPlayer.h" |
Syntax
enum EBinkMediaPlayerBinkBufferModes
{
BMASM_Bink_Stream,
BMASM_Bink_PreloadAll,
BMASM_Bink_StreamUntilResident,
BMASM_Bink_MAX,
}
Values
| Name | Remarks |
|---|---|
| BMASM_Bink_Stream | Stream the movie off the media during playback (caches about 1 second of video). |
| BMASM_Bink_PreloadAll | Loads the whole movie into memory at Open time (will block). |
| BMASM_Bink_StreamUntilResident | Streams the movie into a memory buffer as big as the movie, so it will be preloaded eventually). |
| BMASM_Bink_MAX |