Pārlūkot izejas kodu
Fix VLCMediaPlayer dealloc
if the stream hasn't been stopped by the time dealloc is called, stopping it is useless because dealloc will most likely occur on the main thread, and the [stop] method executes asynchronously on a background thread. This is a hopeless situation.
if a stream has completely failed to start (i.e. forbidden RTSP access), the player's state is libvlc_NothingSpecial. Handle this case in the debug assert.
Signed-off-by: Felix Paul Kühne <fkuehne@videolan.org>