[FFmpeg-cvslog] amix: fix format specifier for AVFilterLink.sample_rate.
Anton Khirnov
git at videolan.org
Wed Jun 27 02:07:41 CEST 2012
ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Mon Jun 25 12:53:18 2012 +0200| [422008ac6320561d38e3024dbb40690be14b2e7b] | committer: Anton Khirnov
amix: fix format specifier for AVFilterLink.sample_rate.
It is a plain int now.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=422008ac6320561d38e3024dbb40690be14b2e7b
---
libavfilter/af_amix.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/libavfilter/af_amix.c b/libavfilter/af_amix.c
index 156799c..8ceb179 100644
--- a/libavfilter/af_amix.c
+++ b/libavfilter/af_amix.c
@@ -261,7 +261,7 @@ static int config_output(AVFilterLink *outlink)
av_get_channel_layout_string(buf, sizeof(buf), -1, outlink->channel_layout);
av_log(ctx, AV_LOG_VERBOSE,
- "inputs:%d fmt:%s srate:%"PRId64" cl:%s\n", s->nb_inputs,
+ "inputs:%d fmt:%s srate:%d cl:%s\n", s->nb_inputs,
av_get_sample_fmt_name(outlink->format), outlink->sample_rate, buf);
return 0;
More information about the ffmpeg-cvslog
mailing list