[FFmpeg-cvslog] Fix a typo in the Monkey's Audio demuxer.
Carl Eugen Hoyos
git at videolan.org
Wed Mar 27 01:56:13 CET 2013
ffmpeg | branch: master | Carl Eugen Hoyos <cehoyos at ag.or.at> | Wed Mar 27 01:55:11 2013 +0100| [7857ddceecdd683a41ba5c57e662232c1917e444] | committer: Carl Eugen Hoyos
Fix a typo in the Monkey's Audio demuxer.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=7857ddceecdd683a41ba5c57e662232c1917e444
---
libavformat/ape.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavformat/ape.c b/libavformat/ape.c
index a532d5b..e2b8ada 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");
More information about the ffmpeg-cvslog
mailing list