summaryrefslogtreecommitdiffstats
path: root/libhb/dvdnav.c
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2012-07-15 19:47:01 +0000
committerjstebbins <[email protected]>2012-07-15 19:47:01 +0000
commit10e3e70a28305f08eb5298c46e26eb6537ea08c8 (patch)
treee95b56f75297082db3a6719d4d0ef337c2f46a56 /libhb/dvdnav.c
parent62cbe39e294565f429411d8293aa64c41a9d1b30 (diff)
Use libav for dts audio decoding instead of libdca
libdca has no advantage over libav for dts audio decoding. It doesn't do drc and it's downmix capabilities are actually inferior to libav. So this completely removes libdca from libhb git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4844 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/dvdnav.c')
-rw-r--r--libhb/dvdnav.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/dvdnav.c b/libhb/dvdnav.c
index d6e97c1a5..436147a4d 100644
--- a/libhb/dvdnav.c
+++ b/libhb/dvdnav.c
@@ -525,6 +525,7 @@ static hb_title_t * hb_dvdnav_title_scan( hb_dvd_t * e, int t, uint64_t min_dura
case 0x06:
audio->id = ( ( 0x88 + position ) << 8 ) | 0xbd;
audio->config.in.codec = HB_ACODEC_DCA;
+ audio->config.in.codec_param = CODEC_ID_DTS;
codec_name = "DTS";
break;