libvlc_media_player_pause() crashs with YUV video formats
Posted: 13 Oct 2014 11:03
I develop under Windows 7 (VS 2008) using the precompiled libvlc 2.1.2 from ftp server
(same problem with other versions).
To retrieve a video frame from file i go the normal way by using:
All works fine until libvlc_media_player_pause(_pMediaPlayer) will be called.
Callstack for 64bit application:
- removing libi420_yuy2_sse2_plugin.dll plugin from the plugin tree leads to a crash of the libi420_yuy2_mmx_plugin.dll plugin
Any idea?
Thanks in advance for your time, and sorry for my poor english.
(same problem with other versions).
To retrieve a video frame from file i go the normal way by using:
Code: Select all
_pMedia=libvlc_media_new_path( _pLibInstance, fileName);
libvlc_media_player_set_media( _pMediaPlayer, _pMedia);
libvlc_video_set_callbacks( _pMediaPlayer, LockCB, UnlockCB, DisplayCB, (void*)&_CBData);
libvlc_video_set_format( _pMediaPlayer, "UYVY", vidImgW, vidImgH, bytePerLn);
libvlc_media_player_play(_pMediaPlayer);
Callstack for 64bit application:
- libi420_yuy2_sse2_plugin.dll!000000006a142c45()
libvlccore.dll!000000007073acbc()
libvlccore.dll!000000007073b5b6()
libvlccore.dll!0000000070706c9b()
libvlccore.dll!0000000070707543()
libvlccore.dll!000000007073f4a2()
msvcrt.dll!000007feff91415f()
msvcrt.dll!000007feff916ebd()
kernel32.dll!00000000774959ed()
ntdll.dll!00000000776cc541()
- libi420_yuy2_sse2_plugin.dll!659b3354()
ntdll.dll!778a015d()
msvcrt.dll!753d1328()
kernel32.dll!7699338a()
ntdll.dll!778b9f72()
ntdll.dll!778b9f45()
- removing libi420_yuy2_sse2_plugin.dll plugin from the plugin tree leads to a crash of the libi420_yuy2_mmx_plugin.dll plugin
Any idea?
Thanks in advance for your time, and sorry for my poor english.