[vlc-devel] [PATCH] src/missing: fix compilation when SOUT is disabled
Steve Lhomme
robux4 at gmail.com
Tue Jan 26 16:21:12 CET 2016
From: Steve Lhomme <slhomme at matroska.org>
---
src/missing.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/missing.c b/src/missing.c
index 24218f3..692b9b5 100644
--- a/src/missing.c
+++ b/src/missing.c
@@ -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);
--
2.6.1.windows.1
More information about the vlc-devel
mailing list