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/work.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/work.c')
-rw-r--r-- | libhb/work.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libhb/work.c b/libhb/work.c index afec2701a..2192f593b 100644 --- a/libhb/work.c +++ b/libhb/work.c @@ -8,7 +8,6 @@ */ #include "hb.h" -#include "a52dec/a52.h" #include "libavformat/avformat.h" #include "openclwrapper.h" #include "opencl.h" @@ -125,7 +124,6 @@ hb_work_object_t* hb_codec_decoder(int codec) } switch (codec) { - case HB_ACODEC_AC3: return hb_get_work(WORK_DECA52); case HB_ACODEC_LPCM: return hb_get_work(WORK_DECLPCM); default: break; } |