diff --git a/libavcodec/aac.c b/libavcodec/aac.c index 2bb05b85a2f077ee7dd3fd3abceeac3b4e86e89b..d23d4da2c42119ad16e8ded5b79782e4dbf49d3e 100644 --- a/libavcodec/aac.c +++ b/libavcodec/aac.c @@ -942,9 +942,9 @@ static int decode_spectrum_and_dequant(AACContext *ac, float coef[1024], if (vq_ptr[j] == 64.0f) { int n = 4; /* The total length of escape_sequence must be < 22 bits according - to the specification (i.e. max is 11111111110xxxxxxxxxx). */ - while (get_bits1(gb) && n < 15) n++; - if (n == 15) { + to the specification (i.e. max is 111111110xxxxxxxxxxxx). */ + while (get_bits1(gb) && n < 13) n++; + if (n == 13) { av_log(ac->avccontext, AV_LOG_ERROR, "error in spectral data, ESC overflow\n"); return -1; }