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

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

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 42773186
......@@ -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()
......
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