summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2011-06-14 01:24:34 +0000
committerjstebbins <[email protected]>2011-06-14 01:24:34 +0000
commitd4b5c3e9ea690220fb7e959aed0c68a2e73b0316 (patch)
tree824b35f6b87a1bab96de73f5bcb0eccf43a5e213 /test
parentb3b9ef3add434b865c3deed92cb9e04a8703f389 (diff)
Add DTS-HD passthru \o/
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4055 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'test')
-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;