diff options
author | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-08-21 19:20:22 +0100 |
---|---|---|
committer | Rostislav Pehlivanov <atomnuker@gmail.com> | 2015-08-21 19:20:22 +0100 |
commit | eab12d072e657ec748f0259b5281bd6912dccd70 (patch) | |
tree | f7790b97014e4040183bf290f22e3004ad3bd77c /libavcodec/aacenc.h | |
parent | d1ca7142ac93e713dce5654476b7b91b00ebbef2 (diff) | |
download | ffmpeg-eab12d072e657ec748f0259b5281bd6912dccd70.tar.gz |
aacenc: do not reject AAC-Main profile
This commit permits for the use of the Main profile
in encoding. The functionality of that profile will
be added in the commits following. By itself, this
commit does not alter anything.
Signed-off-by: Rostislav Pehlivanov <atomnuker@gmail.com>
Diffstat (limited to 'libavcodec/aacenc.h')
-rw-r--r-- | libavcodec/aacenc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/aacenc.h b/libavcodec/aacenc.h index dc88f598d9..eb3e378b76 100644 --- a/libavcodec/aacenc.h +++ b/libavcodec/aacenc.h @@ -45,6 +45,7 @@ typedef struct AACEncOptions { int stereo_mode; int aac_coder; int pns; + int pred; int intensity_stereo; } AACEncOptions; @@ -77,6 +78,7 @@ typedef struct AACEncContext { AVFloatDSPContext *fdsp; float *planar_samples[6]; ///< saved preprocessed input + int profile; ///< copied from avctx LPCContext lpc; ///< used by TNS int samplerate_index; ///< MPEG-4 samplerate index int channels; ///< channel count |