Commit a27dd41e authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf

DirectX/GDI: use COINIT_MULTITHREADED instead of COINIT_APARTMENTTHREADED

The renderer may be updated in the DMO thread which uses COINIT_MULTITHREADED
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent fcf5a9e5
...@@ -283,7 +283,7 @@ static void CommonChangeThumbnailClip(vout_display_t *vd, bool show) ...@@ -283,7 +283,7 @@ static void CommonChangeThumbnailClip(vout_display_t *vd, bool show)
if (!GetVersionEx(&winVer) || winVer.dwMajorVersion <= 5) if (!GetVersionEx(&winVer) || winVer.dwMajorVersion <= 5)
return; return;
if( FAILED(CoInitializeEx(NULL, COINIT_APARTMENTTHREADED)) ) if( FAILED(CoInitializeEx(NULL, COINIT_MULTITHREADED)) )
vlc_assert_unreachable(); vlc_assert_unreachable();
void *ptr; void *ptr;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment