diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-02 22:50:37 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-03-02 04:08:09 +0100 |
commit | cf729b248973fdc6cbf86efa7b3852ea98c40062 (patch) | |
tree | 526033caa6c3d69a520d73f1d877a87f9c32cece | |
parent | fd8c3277c4948ed9e73a139b7853409512ecf96d (diff) | |
download | ffmpeg-cf729b248973fdc6cbf86efa7b3852ea98c40062.tar.gz |
avcodec/libfdk-aacdec: Change conceal_method to int, its accessed via AVOption as int
This fixes depending on implementation defined behavior
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavcodec/libfdk-aacdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/libfdk-aacdec.c b/libavcodec/libfdk-aacdec.c index a8ed104fc0..f7fc8119c2 100644 --- a/libavcodec/libfdk-aacdec.c +++ b/libavcodec/libfdk-aacdec.c @@ -44,7 +44,7 @@ typedef struct FDKAACDecContext { int initialized; uint8_t *decoder_buffer; uint8_t *anc_buffer; - enum ConcealMethod conceal_method; + int conceal_method; int drc_level; int drc_boost; int drc_heavy; |