summaryrefslogtreecommitdiff
path: root/libavfilter/af_pan.c
diff options
context:
space:
mode:
authorMoritz Barsnick <barsnick@gmx.net>2016-10-09 12:57:00 +0200
committerMichael Niedermayer <michael@niedermayer.cc>2016-10-09 20:09:00 +0200
commitf4e4bde1f4cff99d4ec59ed361ff9228b2050e6b (patch)
tree3b780c58935e21ce610a1a320703c71eafd3cd09 /libavfilter/af_pan.c
parent3305f71025289970fb34473adce5d9c65d1af016 (diff)
lavfi: fix typos
Signed-off-by: Moritz Barsnick <barsnick@gmx.net> Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavfilter/af_pan.c')
-rw-r--r--libavfilter/af_pan.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/af_pan.c b/libavfilter/af_pan.c
index 1eb102c10a..7c02f6720d 100644
--- a/libavfilter/af_pan.c
+++ b/libavfilter/af_pan.c
@@ -109,7 +109,7 @@ static av_cold int init(AVFilterContext *ctx)
if (!pan->args) {
av_log(ctx, AV_LOG_ERROR,
"pan filter needs a channel layout and a set "
- "of channels definitions as parameter\n");
+ "of channel definitions as parameter\n");
return AVERROR(EINVAL);
}
if (!args)
@@ -276,7 +276,7 @@ static int config_props(AVFilterLink *link)
if (link->channels > MAX_CHANNELS ||
pan->nb_output_channels > MAX_CHANNELS) {
av_log(ctx, AV_LOG_ERROR,
- "af_pan support a maximum of %d channels. "
+ "af_pan supports a maximum of %d channels. "
"Feel free to ask for a higher limit.\n", MAX_CHANNELS);
return AVERROR_PATCHWELCOME;
}