Commit c12325b4 authored by Jean-Paul Saman's avatar Jean-Paul Saman

es_out: Add intended audio audience to meta data if present.

parent 49e1e8d8
......@@ -2707,6 +2707,12 @@ static void EsOutUpdateInfo( es_out_t *out, es_out_id_t *es, const es_format_t *
input_Control( p_input, INPUT_ADD_INFO, psz_cat,
psz_name, _("%.2f dB"), p_rg->pf_gain[i] );
}
if( fmt->psz_description )
{
input_Control( p_input, INPUT_ADD_INFO, psz_cat, _("Audience"),
"%s", fmt->psz_description );
}
break;
case VIDEO_ES:
......
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