summaryrefslogtreecommitdiffstats
path: root/test/test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.c')
-rw-r--r--test/test.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/test/test.c b/test/test.c
index 4305c3625..4bb5f80d6 100644
--- a/test/test.c
+++ b/test/test.c
@@ -3565,7 +3565,7 @@ static int get_acodec_for_string( char *codec )
}
else if( !strcasecmp( codec, "copy" ) )
{
- return HB_ACODEC_AC3_PASS | HB_ACODEC_DCA_PASS;
+ return HB_ACODEC_AC3_PASS | HB_ACODEC_DCA_PASS | HB_ACODEC_DCA_HD_PASS;
}
else if( !strcasecmp( codec, "copy:ac3" ) )
{
@@ -3575,6 +3575,10 @@ static int get_acodec_for_string( char *codec )
{
return HB_ACODEC_DCA_PASS;
}
+ else if( !strcasecmp( codec, "copy:dtshd" ) )
+ {
+ return HB_ACODEC_DCA_HD_PASS;
+ }
else if( !strcasecmp( codec, "lame" ) )
{
return HB_ACODEC_LAME;