Commit 70d7a41a authored by kostya's avatar kostya

While APE changed container format in 3.98, frequency tables for range coding

were changed only in 3.99.
This fixes decoding of v3.98 APE file I have.

Eternal curses to the creator of such unstable format.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15019 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent bc8e078e
......@@ -372,7 +372,7 @@ static inline int ape_decode_value(APEContext * ctx, APERice *rice)
{
int x, overflow;
if (ctx->fileversion < 3980) {
if (ctx->fileversion < 3990) {
int tmpk;
overflow = range_get_symbol(ctx, counts_3970, counts_diff_3970);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment