Browse Source

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>
tags/n2.6
Michael Niedermayer 11 years ago
parent
commit
cf729b2489
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/libfdk-aacdec.c

+ 1
- 1
libavcodec/libfdk-aacdec.c View File

@@ -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;


Loading…
Cancel
Save