summaryrefslogtreecommitdiffstats
path: root/libhb/common.h
diff options
context:
space:
mode:
authorjstebbins <[email protected]>2011-06-07 21:27:02 +0000
committerjstebbins <[email protected]>2011-06-07 21:27:02 +0000
commitd40287132815adc74a0d1444a1e7b76e89879f69 (patch)
tree00c95f36cbe47104a7ad40233c93bc588702251f /libhb/common.h
parente07dec1ec259a52a893642da14856e16085f3c36 (diff)
libhb: add support for libav aac encoder (libhb only)
This generalizes the ac3 encoder to make it easy to add support for any audio encoder that libav supports. Since ffaac is not quite ready, the cli and gui does not expose ffaac yet. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4029 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'libhb/common.h')
-rw-r--r--libhb/common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libhb/common.h b/libhb/common.h
index 14af50d8a..ee3bc3b98 100644
--- a/libhb/common.h
+++ b/libhb/common.h
@@ -321,6 +321,7 @@ struct hb_job_s
#define HB_ACODEC_FFMPEG 0x00008000
#define HB_ACODEC_CA_AAC 0x00010000
#define HB_ACODEC_CA_HAAC 0x00020000
+#define HB_ACODEC_FFAAC 0x00040000
#define HB_ACODEC_PASS_FLAG 0x40000000
#define HB_ACODEC_PASS_MASK (HB_ACODEC_AC3 | HB_ACODEC_DCA)
#define HB_ACODEC_AC3_PASS (HB_ACODEC_AC3 | HB_ACODEC_PASS_FLAG)
@@ -791,7 +792,7 @@ extern hb_work_object_t hb_encvorbis;
extern hb_work_object_t hb_muxer;
extern hb_work_object_t hb_encca_aac;
extern hb_work_object_t hb_encca_haac;
-extern hb_work_object_t hb_encac3;
+extern hb_work_object_t hb_encavcodeca;
#define FILTER_OK 0
#define FILTER_DELAY 1