diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-03-27 01:55:11 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2013-03-27 01:55:11 +0100 |
commit | 7857ddceecdd683a41ba5c57e662232c1917e444 (patch) | |
tree | 76fbf9adb63ca50fe0ee2793fac40cbd88148486 /libavformat/ape.c | |
parent | 1a3f7ded147f57e67813b80ceccd919310f97c2c (diff) | |
download | ffmpeg-7857ddceecdd683a41ba5c57e662232c1917e444.tar.gz |
Fix a typo in the Monkey's Audio demuxer.
Diffstat (limited to 'libavformat/ape.c')
-rw-r--r-- | libavformat/ape.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/ape.c b/libavformat/ape.c index a532d5b840..e2b8adae86 100644 --- a/libavformat/ape.c +++ b/libavformat/ape.c @@ -132,7 +132,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"); |