diff options
author | jstebbins <[email protected]> | 2014-02-20 01:51:45 +0000 |
---|---|---|
committer | jstebbins <[email protected]> | 2014-02-20 01:51:45 +0000 |
commit | 0306771b4a5c09d5bbd5742221eb0bc52103f2c5 (patch) | |
tree | 3c970115d32d0515840eb8b7bb50b2e8976d8d27 /libhb/dvdnav.c | |
parent | a7c4a9f9f03cafa63068150a2e483db6ef686718 (diff) |
libhb: remove a52dec
replace it with libavcodec ac3 decoder
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6049 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/dvdnav.c')
-rw-r--r-- | libhb/dvdnav.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libhb/dvdnav.c b/libhb/dvdnav.c index 9965318ec..888289b60 100644 --- a/libhb/dvdnav.c +++ b/libhb/dvdnav.c @@ -528,6 +528,7 @@ static hb_title_t * hb_dvdnav_title_scan( hb_dvd_t * e, int t, uint64_t min_dura case 0x00: audio->id = ( ( 0x80 + position ) << 8 ) | 0xbd; audio->config.in.codec = HB_ACODEC_AC3; + audio->config.in.codec_param = AV_CODEC_ID_AC3; codec_name = "AC3"; break; |