Browse Source

mft: Dynamically load the DLL on windows store builds

pull/43/head
Hugo Beauzée-Luyssen 10 years ago
parent
commit
472ec062c8
  1. 2
      modules/codec/mft.c

2
modules/codec/mft.c

@ -1097,7 +1097,7 @@ static int FindMFT(decoder_t *p_dec)
static int LoadMFTLibrary(MFHandle *mf)
{
#if _WIN32_WINNT < 0x601
#if _WIN32_WINNT < 0x601 || VLC_WINSTORE_APP
mf->mfplat_dll = LoadLibrary(TEXT("mfplat.dll"));
if (!mf->mfplat_dll)
return VLC_EGENERIC;

Loading…
Cancel
Save