summaryrefslogtreecommitdiffstats
path: root/libhb/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'libhb/stream.c')
-rw-r--r--libhb/stream.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/libhb/stream.c b/libhb/stream.c
index eb2a42e6f..26de66ee5 100644
--- a/libhb/stream.c
+++ b/libhb/stream.c
@@ -2039,7 +2039,11 @@ static void set_audio_description(
sizeof( audio->config.lang.description ), "%s (%s)",
audio->config.lang.simple, codec_name );
- if ( audio->config.in.channel_layout )
+ if( audio->config.in.channel_layout == HB_INPUT_CH_LAYOUT_DOLBY )
+ {
+ strcat( audio->config.lang.description, " (Dolby Surround)" );
+ }
+ else if( audio->config.in.channel_layout )
{
int layout = audio->config.in.channel_layout;
char *desc = audio->config.lang.description +