[vlc-commits] commit: Used the right object for messages in src/input/decoder.c ( Laurent Aimar )
git at videolan.org
git at videolan.org
Mon Nov 1 16:41:48 CET 2010
vlc | branch: master | Laurent Aimar <fenrir at videolan.org> | Mon Nov 1 16:38:16 2010 +0100| [49062f184c68e4d2a22c8f318139dbf368d567b6] | committer: Laurent Aimar
Used the right object for messages in src/input/decoder.c
aout/vout were sometimes used. It was inconsistent and in some cases
those objects could be undefined (NULL).
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=49062f184c68e4d2a22c8f318139dbf368d567b6
---
src/input/decoder.c | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/input/decoder.c b/src/input/decoder.c
index 018b24c..22201b2 100644
--- a/src/input/decoder.c
+++ b/src/input/decoder.c
@@ -1219,7 +1219,7 @@ static void DecoderPlayAudio( decoder_t *p_dec, aout_buffer_t *p_audio,
else
{
if( b_dated )
- msg_Warn( p_aout, "received buffer in the future" );
+ msg_Warn( p_dec, "received buffer in the future" );
else
msg_Warn( p_dec, "non-dated audio buffer received" );
@@ -1351,7 +1351,7 @@ static void DecoderPlayVideo( decoder_t *p_dec, picture_t *p_picture,
if( p_picture->date <= VLC_TS_INVALID )
{
- msg_Warn( p_vout, "non-dated video buffer received" );
+ msg_Warn( p_dec, "non-dated video buffer received" );
*pi_lost_sum += 1;
vout_ReleasePicture( p_vout, p_picture );
return;
@@ -1439,9 +1439,9 @@ static void DecoderPlayVideo( decoder_t *p_dec, picture_t *p_picture,
else
{
if( b_dated )
- msg_Warn( p_vout, "early picture skipped" );
+ msg_Warn( p_dec, "early picture skipped" );
else
- msg_Warn( p_vout, "non-dated video buffer received" );
+ msg_Warn( p_dec, "non-dated video buffer received" );
*pi_lost_sum += 1;
vout_ReleasePicture( p_vout, p_picture );
More information about the vlc-commits
mailing list