[vlc-commits] demux: ts: fix pid setup debug string indentation

Francois Cartegnie git at videolan.org
Thu Jan 21 18:35:12 CET 2016


vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Thu Jan 21 18:34:10 2016 +0100| [91074e1ad85d7efeb62d84fe6bc3b4e5352bb615] | committer: Francois Cartegnie

demux: ts: fix pid setup debug string indentation

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

 modules/demux/mpeg/ts.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/mpeg/ts.c b/modules/demux/mpeg/ts.c
index c1ca125..c0dd4ca 100644
--- a/modules/demux/mpeg/ts.c
+++ b/modules/demux/mpeg/ts.c
@@ -5066,7 +5066,7 @@ static void PMTParseEsIso639( demux_t *p_demux, ts_pes_es_t *p_es,
     dvbpsi_iso639_dr_t *p_decoded = dvbpsi_DecodeISO639Dr( p_dr );
     if( !p_decoded )
     {
-        msg_Err( p_demux, "Failed to decode a ISO 639 descriptor" );
+        msg_Err( p_demux, "      Failed to decode a ISO 639 descriptor" );
         return;
     }
 
@@ -5076,7 +5076,7 @@ static void PMTParseEsIso639( demux_t *p_demux, ts_pes_es_t *p_es,
     {
         memcpy( p_es->fmt.psz_language, p_decoded->code[0].iso_639_code, 3 );
         p_es->fmt.psz_language[3] = 0;
-        msg_Dbg( p_demux, "found language: %s", p_es->fmt.psz_language);
+        msg_Dbg( p_demux, "      found language: %s", p_es->fmt.psz_language);
     }
     int type = p_decoded->code[0].i_audio_type;
     p_es->fmt.psz_description = GetAudioTypeDesc(p_demux, type);



More information about the vlc-commits mailing list