Navigation
API > API/Plugins > API/Plugins/BinkMediaPlayer
Enumerates available bink buffering modes.
| Name | EBinkMediaPlayerBinkDrawStyle |
| Type | enum |
| Header File | /Engine/Plugins/Media/BinkMedia/Source/BinkMediaPlayer/Public/BinkMediaPlayer.h |
| Include Path | #include "BinkMediaPlayer.h" |
Syntax
enum EBinkMediaPlayerBinkDrawStyle
{
BMASM_Bink_DS_RenderToTexture,
BMASM_Bink_DS_OverlayFillScreenWithAspectRatio,
BMASM_Bink_DS_OverlayOriginalMovieSize,
BMASM_Bink_DS_OverlayFillScreen,
BMASM_Bink_DS_OverlaySpecificDestinationRectangle,
BMASM_Bink_DS_MAX,
}
Values
| Name | Remarks |
|---|---|
| BMASM_Bink_DS_RenderToTexture | Renders movie to the destination texture (default UE4 functionality) |
| BMASM_Bink_DS_OverlayFillScreenWithAspectRatio | Renders movie in an overlay (UE4 bypass) and corrects for movie aspect ratio. |
| BMASM_Bink_DS_OverlayOriginalMovieSize | Renders movie in an overlay (UE4 bypass), displaying the original movie size and not stretching to fill frame |
| BMASM_Bink_DS_OverlayFillScreen | Renders movie in an overlay (UE4 bypass), filling the entire destination rectangle |
| BMASM_Bink_DS_OverlaySpecificDestinationRectangle | Renders movie in an overlay (UE4 bypass), rendering to the specific rectangle specified (same as FillScreen) |
| BMASM_Bink_DS_MAX |