[vlc-commits] Live555: fix compilation with current library version

Felix Paul Kühne git at videolan.org
Tue Feb 11 15:38:32 CET 2014


vlc/vlc-2.0 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Tue Feb 11 15:38:32 2014 +0100| [f75bd922341008a15c936fbe6c9dc4dcf5bb2ee8] | committer: Felix Paul Kühne

Live555: fix compilation with current library version

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

 modules/demux/live555.cpp |    6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/modules/demux/live555.cpp b/modules/demux/live555.cpp
index f8f040d..86b5190 100644
--- a/modules/demux/live555.cpp
+++ b/modules/demux/live555.cpp
@@ -232,7 +232,11 @@ public:
                    char const* applicationName, portNumBits tunnelOverHTTPPortNum,
                    demux_sys_t *p_sys) :
                    RTSPClient( env, rtspURL, verbosityLevel, applicationName,
-                   tunnelOverHTTPPortNum )
+                   tunnelOverHTTPPortNum
+#if LIVEMEDIA_LIBRARY_VERSION_INT >= 1373932800
+                   , -1
+#endif
+                   )
     {
         this->p_sys = p_sys;
     }



More information about the vlc-commits mailing list