summaryrefslogtreecommitdiff
path: root/libavcodec/aac.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-12-30 05:07:12 +0100
committerMichael Niedermayer <michaelni@gmx.at>2012-12-30 05:29:17 +0100
commitb113d4a83c82c4dcf51945c2a701a6dd54126c27 (patch)
tree41bb444272fcf2abc032666ad2dc1fcc3c1447d3 /libavcodec/aac.h
parent644f021ccf4b8cd8ffd12c2022e5333215c24aa8 (diff)
aacdec: make dual mono mode selectable through AVOptions too.
Based on patch by Akihiro Tsukada Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/aac.h')
-rw-r--r--libavcodec/aac.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aac.h b/libavcodec/aac.h
index 32fbbc48c3..9e9fa0ea64 100644
--- a/libavcodec/aac.h
+++ b/libavcodec/aac.h
@@ -261,6 +261,7 @@ typedef struct ChannelElement {
* main AAC context
*/
typedef struct AACContext {
+ AVClass *class;
AVCodecContext *avctx;
AVFrame frame;
@@ -309,6 +310,7 @@ typedef struct AACContext {
* @name Japanese DTV specific extension
* @{
*/
+ int force_dmono_mode;///< 0->not dmono, 1->use first channel, 2->use second channel
int dmono_mode; ///< 0->not dmono, 1->use first channel, 2->use second channel
/** @} */