From cf729b248973fdc6cbf86efa7b3852ea98c40062 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 2 Feb 2015 22:50:37 +0100 Subject: [PATCH] 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 --- libavcodec/libfdk-aacdec.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;