Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Eugen Hoyos <cehoyos@ag.or.at>2012-07-03 23:35:20 +0400
committerCarl Eugen Hoyos <cehoyos@ag.or.at>2012-07-03 23:35:20 +0400
commit71e5a14028a153867bcd267d964c8f8ebb04b22e (patch)
treef5a2fc2eb41cebfacde144dda8ddeed6bcaadce2 /libavfilter/avfiltergraph.c
parent6ea973fc4c959f8f0fcbf3d2f75cc7371b4ecaee (diff)
Suggest aresample filter if it was not compiled but requested.
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r--libavfilter/avfiltergraph.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfiltergraph.c b/libavfilter/avfiltergraph.c
index 12d5337f48..7530b6b99d 100644
--- a/libavfilter/avfiltergraph.c
+++ b/libavfilter/avfiltergraph.c
@@ -365,7 +365,7 @@ static int query_formats(AVFilterGraph *graph, AVClass *log_ctx)
break;
case AVMEDIA_TYPE_AUDIO:
if (!(filter = avfilter_get_by_name("aresample"))) {
- av_log(log_ctx, AV_LOG_ERROR, "'resample' filter "
+ av_log(log_ctx, AV_LOG_ERROR, "'aresample' filter "
"not present, cannot convert audio formats.\n");
return AVERROR(EINVAL);
}