Commit 9e2cee57 authored by Clément Bœsch's avatar Clément Bœsch

ffmpeg: do not deprecate -vol and -map_channel.

These helpers are handy, just notice the user it is done using lavfi.
parent fa29ca5f
...@@ -878,9 +878,8 @@ static int configure_audio_filters(FilterGraph *fg, AVFilterContext **in_filter, ...@@ -878,9 +878,8 @@ static int configure_audio_filters(FilterGraph *fg, AVFilterContext **in_filter,
#define AUTO_INSERT_FILTER(opt_name, filter_name, arg) do { \ #define AUTO_INSERT_FILTER(opt_name, filter_name, arg) do { \
AVFilterContext *filt_ctx; \ AVFilterContext *filt_ctx; \
\ \
av_log(NULL, AV_LOG_WARNING, opt_name " has been deprecated. " \ av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
"Use the " filter_name " filter instead " \ "similarly to -af " filter_name "=%s.\n", arg); \
"(-af " filter_name "=%s).\n", arg); \
\ \
ret = avfilter_graph_create_filter(&filt_ctx, \ ret = avfilter_graph_create_filter(&filt_ctx, \
avfilter_get_by_name(filter_name), \ avfilter_get_by_name(filter_name), \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment