1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

ape: use correct context for the bit table printed in debug

This commit is contained in:
Kostya Shishkov
2013-03-27 08:57:08 +01:00
parent 7c22d0489f
commit 472391b9a7

View File

@@ -134,7 +134,7 @@ static void ape_dumpinfo(AVFormatContext * s, APEContext * ape_ctx)
av_log(s, AV_LOG_DEBUG, "%8d %"PRIu32" (%"PRIu32" bytes)", av_log(s, AV_LOG_DEBUG, "%8d %"PRIu32" (%"PRIu32" bytes)",
i, ape_ctx->seektable[i], i, ape_ctx->seektable[i],
ape_ctx->seektable[i + 1] - ape_ctx->seektable[i]); ape_ctx->seektable[i + 1] - ape_ctx->seektable[i]);
if (s->bittable) if (ape_ctx->bittable)
av_log(s, AV_LOG_DEBUG, " + %2d bits\n", av_log(s, AV_LOG_DEBUG, " + %2d bits\n",
ape_ctx->bittable[i]); ape_ctx->bittable[i]);
av_log(s, AV_LOG_DEBUG, "\n"); av_log(s, AV_LOG_DEBUG, "\n");