diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-07-03 21:35:20 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2012-07-03 21:35:20 +0200 |
commit | 71e5a14028a153867bcd267d964c8f8ebb04b22e (patch) | |
tree | f5a2fc2eb41cebfacde144dda8ddeed6bcaadce2 /libavfilter/avfiltergraph.c | |
parent | 6ea973fc4c959f8f0fcbf3d2f75cc7371b4ecaee (diff) | |
download | ffmpeg-71e5a14028a153867bcd267d964c8f8ebb04b22e.tar.gz |
Suggest aresample filter if it was not compiled but requested.
Diffstat (limited to 'libavfilter/avfiltergraph.c')
-rw-r--r-- | libavfilter/avfiltergraph.c | 2 |
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); } |