Commit 52d9726b authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

live555: print library version in debug

parent 7ec013e0
...@@ -60,6 +60,7 @@ ...@@ -60,6 +60,7 @@
#include <BasicUsageEnvironment.hh> #include <BasicUsageEnvironment.hh>
#include <GroupsockHelper.hh> #include <GroupsockHelper.hh>
#include <liveMedia.hh> #include <liveMedia.hh>
#include <liveMedia_version.hh>
extern "C" { extern "C" {
#include "../access/mms/asf.h" /* Who said ugly ? */ #include "../access/mms/asf.h" /* Who said ugly ? */
...@@ -297,6 +298,8 @@ static int Open ( vlc_object_t *p_this ) ...@@ -297,6 +298,8 @@ static int Open ( vlc_object_t *p_this )
p_demux->p_sys = p_sys = (demux_sys_t*)malloc( sizeof( demux_sys_t ) ); p_demux->p_sys = p_sys = (demux_sys_t*)malloc( sizeof( demux_sys_t ) );
if( !p_sys ) return VLC_ENOMEM; if( !p_sys ) return VLC_ENOMEM;
msg_Dbg( p_demux, "version "LIVEMEDIA_LIBRARY_VERSION_STRING );
p_sys->p_sdp = NULL; p_sys->p_sdp = NULL;
p_sys->scheduler = NULL; p_sys->scheduler = NULL;
p_sys->env = NULL; p_sys->env = NULL;
......
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