[vlc-commits] Fix live555 breakage in last update
Jean-Baptiste Kempf
git at videolan.org
Thu Jul 25 12:05:47 CEST 2013
vlc/vlc-2.1 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Thu Jul 25 01:14:32 2013 +0200| [8aa5e768634a5ec7d89c79de53c089f3ae794f8d] | committer: Jean-Baptiste Kempf
Fix live555 breakage in last update
(cherry picked from commit ea444abae1d09b751314b24f6352e55be335621d)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=8aa5e768634a5ec7d89c79de53c089f3ae794f8d
---
modules/access/live555.cpp | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/modules/access/live555.cpp b/modules/access/live555.cpp
index 9e02630..7a1ab16 100644
--- a/modules/access/live555.cpp
+++ b/modules/access/live555.cpp
@@ -243,7 +243,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