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

src/missing: fix compilation when SOUT is disabled

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 7265ceef
......@@ -314,6 +314,12 @@ int sout_MuxSendBuffer (sout_mux_t *mux, sout_input_t *input, block_t *block)
vlc_assert_unreachable ();
}
void sout_MuxFlush( sout_mux_t *mux, sout_input_t *input )
{
VLC_UNUSED (mux); VLC_UNUSED (input);
vlc_assert_unreachable ();
}
void sout_StreamChainDelete (sout_stream_t *p_first, sout_stream_t *p_last)
{
VLC_UNUSED (p_first); VLC_UNUSED (p_last);
......
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