summaryrefslogtreecommitdiff
path: root/libavfilter/af_amerge.c
diff options
context:
space:
mode:
authorPaul B Mahol <onemda@gmail.com>2012-06-28 16:51:17 +0000
committerPaul B Mahol <onemda@gmail.com>2012-06-28 17:18:37 +0000
commit3f59bbf5b62710e23243597f3ec6e4c69425657e (patch)
tree8766618d8fe057c0524177d1e9bcd94be2d51bb8 /libavfilter/af_amerge.c
parent61123fb8f719e72ceb48927fab04d7ef92cdfb2f (diff)
lavfi/amerge: silence warnings
The warning silenced was: libavfilter/af_amerge.c:144:29: warning: conversion specifies type 'long long' but the argument has type 'int' [-Wformat] The warning was introduced after FF_API_SAMPLERATE64 removal. Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'libavfilter/af_amerge.c')
-rw-r--r--libavfilter/af_amerge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/af_amerge.c b/libavfilter/af_amerge.c
index 429057cec8..802188d028 100644
--- a/libavfilter/af_amerge.c
+++ b/libavfilter/af_amerge.c
@@ -141,7 +141,7 @@ static int config_output(AVFilterLink *outlink)
if (ctx->inputs[i]->sample_rate != ctx->inputs[0]->sample_rate) {
av_log(ctx, AV_LOG_ERROR,
"Inputs must have the same sample rate "
- "(%"PRIi64" for in%d vs %"PRIi64")\n",
+ "%d for in%d vs %d\n",
ctx->inputs[i]->sample_rate, i, ctx->inputs[0]->sample_rate);
return AVERROR(EINVAL);
}