Fix unasked usage of VDPAU in SDL

This commit is contained in:
Iwan Timmer 2016-04-03 14:32:58 +02:00
parent 2d278b9370
commit d44f06961f

View File

@ -34,7 +34,7 @@ static char* ffmpeg_buffer;
static void sdl_setup(int videoFormat, int width, int height, int redrawRate, void* context, int drFlags) {
int avc_flags = SLICE_THREADING;
if (drFlags && FORCE_HARDWARE_ACCELERATION)
if (drFlags & FORCE_HARDWARE_ACCELERATION)
avc_flags |= HARDWARE_ACCELERATION;
if (ffmpeg_init(videoFormat, width, height, avc_flags, 2) < 0) {