[vlc-devel] commit: stream_output: Expanded debug message at sout input creation/ destruction. (Pierre d'Herbemont )
git version control
git at videolan.org
Tue Apr 22 15:51:41 CEST 2008
vlc | branch: master | Pierre d'Herbemont <pdherbemont at videolan.org> | Tue Apr 22 15:50:13 2008 +0200| [afb9691c93dc4f1d59d15c661ac92f06aa634fe9]
stream_output: Expanded debug message at sout input creation/destruction.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=afb9691c93dc4f1d59d15c661ac92f06aa634fe9
---
src/stream_output/stream_output.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/stream_output/stream_output.c b/src/stream_output/stream_output.c
index f617193..5077f06 100644
--- a/src/stream_output/stream_output.c
+++ b/src/stream_output/stream_output.c
@@ -212,13 +212,13 @@ sout_packetizer_input_t *sout_InputNew( sout_instance_t *p_sout,
{
sout_packetizer_input_t *p_input;
- msg_Dbg( p_sout, "adding a new input" );
-
/* *** create a packetizer input *** */
p_input = malloc( sizeof( sout_packetizer_input_t ) );
p_input->p_sout = p_sout;
p_input->p_fmt = p_fmt;
+ msg_Dbg( p_sout, "adding a new sout input (sout_input:%p)", p_input );
+
if( p_fmt->i_codec == VLC_FOURCC( 'n', 'u', 'l', 'l' ) )
{
vlc_object_release( p_sout );
@@ -246,7 +246,7 @@ int sout_InputDelete( sout_packetizer_input_t *p_input )
{
sout_instance_t *p_sout = p_input->p_sout;
- msg_Dbg( p_sout, "removing an input" );
+ msg_Dbg( p_sout, "removing a sout input (sout_input:%p)", p_input );
if( p_input->p_fmt->i_codec != VLC_FOURCC( 'n', 'u', 'l', 'l' ) )
{
More information about the vlc-devel
mailing list