Skip to content
Snippets Groups Projects
Commit d6de5680 authored by Steve Lhomme's avatar Steve Lhomme Committed by Jean-Baptiste Kempf
Browse files

chromecast: the stream cannot work if the communication handler is NULL


Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 42773186
No related branches found
No related tags found
No related merge requests found
......@@ -34,12 +34,15 @@
#include <vlc_sout.h>
#include <vlc_threads.h>
#include <cassert>
struct sout_stream_sys_t
{
sout_stream_sys_t(intf_sys_t *intf)
: p_out(NULL)
, p_intf(intf)
{
assert(p_intf != NULL);
}
~sout_stream_sys_t()
......
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