X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Faac.h;h=9e9fa0ea64f4a220ad70b1060808323e0d9ba0a7;hb=48d30f6733368f317a61901c61a78a10402eea7b;hp=9ceccf89096156440fbb61a2ddfdd32c50f65c90;hpb=94ecbe23c52b699a8f2bda1cf71fb4efbf28679a;p=ffmpeg diff --git a/libavcodec/aac.h b/libavcodec/aac.h index 9ceccf89096..9e9fa0ea64f 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,8 +310,8 @@ typedef struct AACContext { * @name Japanese DTV specific extension * @{ */ - int enable_jp_dmono; ///< enable japanese DTV specific 'dual mono' - int dmono_mode; ///< select the channel to decode in dual mono. + 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 /** @} */ DECLARE_ALIGNED(32, float, temp)[128];