summaryrefslogtreecommitdiff
path: root/libavfilter/af_amix.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-06-25 12:53:18 +0200
committerAnton Khirnov <anton@khirnov.net>2012-06-26 19:08:26 +0200
commit422008ac6320561d38e3024dbb40690be14b2e7b (patch)
treeaf09abf17323d5788918cd88e68b349c549d1178 /libavfilter/af_amix.c
parent1a49a169eb74a978eb7b2a4f2caf3520b7741ee5 (diff)
amix: fix format specifier for AVFilterLink.sample_rate.
It is a plain int now.
Diffstat (limited to 'libavfilter/af_amix.c')
-rw-r--r--libavfilter/af_amix.c2
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;