Browse Source

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

tags/n2.0
Kostya Shishkov 12 years ago
parent
commit
472391b9a7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/ape.c

+ 1
- 1
libavformat/ape.c 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)",
i, 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",
ape_ctx->bittable[i]);
av_log(s, AV_LOG_DEBUG, "\n");


Loading…
Cancel
Save