[vlc-devel] commit: i18n: Translate the channels layout in media info ( Christophe Mutricy )
git version control
git at videolan.org
Sun Feb 8 18:16:14 CET 2009
vlc | branch: master | Christophe Mutricy <xtophe at videolan.org> | Sun Feb 8 16:05:28 2009 +0000| [e1ee31d381985d1b6b6b5fcf3e11603f6922f232] | committer: Christophe Mutricy
i18n: Translate the channels layout in media info
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=e1ee31d381985d1b6b6b5fcf3e11603f6922f232
---
src/input/es_out.c | 2 +-
src/input/stream.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/input/decoder b/src/input/decoder
new file mode 100644
index 0000000..e69de29
diff --git a/src/input/es_out.c b/src/input/es_out.c
index afb2d4b..133f294 100644
--- a/src/input/es_out.c
+++ b/src/input/es_out.c
@@ -2628,7 +2628,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
if( fmt->audio.i_physical_channels & AOUT_CHAN_PHYSMASK )
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
- "%s", aout_FormatPrintChannels( &fmt->audio ) );
+ "%s", _( aout_FormatPrintChannels( &fmt->audio ) ) );
else if( fmt->audio.i_channels > 0 )
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
"%u", fmt->audio.i_channels );
diff --git a/src/input/stream.c b/src/input/stream.c
index 1fafc00..ec25705 100644
--- a/src/input/stream.c
+++ b/src/input/stream.c
@@ -40,7 +40,7 @@
#include "input_internal.h"
-#undef STREAM_DEBUG
+// #define STREAM_DEBUG 1
/* TODO:
* - tune the 2 methods (block/stream)
More information about the vlc-devel
mailing list