Commit e1ee31d3 authored by Christophe Mutricy's avatar Christophe Mutricy

i18n: Translate the channels layout in media info

parent 9e7d8f91
...@@ -2628,7 +2628,7 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t * ...@@ -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 ) if( fmt->audio.i_physical_channels & AOUT_CHAN_PHYSMASK )
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"), 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 ) else if( fmt->audio.i_channels > 0 )
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"), input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Channels"),
"%u", fmt->audio.i_channels ); "%u", fmt->audio.i_channels );
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
#include "input_internal.h" #include "input_internal.h"
#undef STREAM_DEBUG // #define STREAM_DEBUG 1
/* TODO: /* TODO:
* - tune the 2 methods (block/stream) * - tune the 2 methods (block/stream)
......
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