diff options
author | Anton Khirnov <anton@khirnov.net> | 2012-06-25 12:53:18 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2012-06-26 19:08:26 +0200 |
commit | 422008ac6320561d38e3024dbb40690be14b2e7b (patch) | |
tree | af09abf17323d5788918cd88e68b349c549d1178 | |
parent | 1a49a169eb74a978eb7b2a4f2caf3520b7741ee5 (diff) | |
download | ffmpeg-422008ac6320561d38e3024dbb40690be14b2e7b.tar.gz |
amix: fix format specifier for AVFilterLink.sample_rate.
It is a plain int now.
-rw-r--r-- | libavfilter/af_amix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_amix.c b/libavfilter/af_amix.c index 156799c44a..8ceb179e58 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; |