mirror of https://git.ffmpeg.org/ffmpeg.git
Fix compilation of AC3 decoder if E-AC3 decoder was disabled.
Originally committed as revision 23131 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
86e09922a5
commit
eb0a4d3222
|
@ -1268,7 +1268,7 @@ static int decode_audio_block(AC3DecodeContext *s, int blk)
|
|||
}
|
||||
|
||||
/* apply spectral extension to high frequency bins */
|
||||
if (s->spx_in_use) {
|
||||
if (s->spx_in_use && CONFIG_EAC3_DECODER) {
|
||||
ff_eac3_apply_spectral_extension(s);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue