[vlc-commits] src/missing: fix compilation when SOUT is disabled

Steve Lhomme git at videolan.org
Tue Jan 26 19:00:10 CET 2016


vlc | branch: master | Steve Lhomme <slhomme at matroska.org> | Tue Jan 26 16:21:12 2016 +0100| [511a8f07c0b9be53f4a8b22a1fc33592a80bf1b3] | committer: Jean-Baptiste Kempf

src/missing: fix compilation when SOUT is disabled

Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=511a8f07c0b9be53f4a8b22a1fc33592a80bf1b3
---

 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);



More information about the vlc-commits mailing list