Skip to content
Snippets Groups Projects
Commit eda8237e authored by Felix Paul Kühne's avatar Felix Paul Kühne
Browse files

media player: prevent assertion on dealloc

parent 57e83f57
No related branches found
No related tags found
No related merge requests found
......@@ -226,6 +226,9 @@ static void HandleMediaPlayerMediaChanged(const libvlc_event_t * event, void * s
- (void)dealloc
{
if (libvlc_media_player_get_state(_playerInstance) != libvlc_Stopped)
[self stop];
NSAssert(libvlc_media_player_get_state(_playerInstance) == libvlc_Stopped, @"You released the media player before ensuring that it is stopped");
[self unregisterObservers];
......@@ -996,6 +999,7 @@ static const VLCMediaPlayerState libvlc_to_local_state[] =
_privateLibrary = [[VLCLibrary sharedLibrary] retain];
libvlc_retain([_privateLibrary instance]);
_playerInstance = libvlc_media_player_new([_privateLibrary instance]);
libvlc_media_player_retain(_playerInstance);
[self registerObservers];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment