[FFmpeg-cvslog] ffmpeg: do not deprecate -vol and -map_channel.
Clément Bœsch
git at videolan.org
Fri May 18 23:44:51 CEST 2012
ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu May 17 20:57:22 2012 +0200| [9e2cee577092bfb2fd8c635ddc51da70bb26efe5] | committer: 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.
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=9e2cee577092bfb2fd8c635ddc51da70bb26efe5
---
ffmpeg.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/ffmpeg.c b/ffmpeg.c
index bd7e6c1..f7d0252 100644
--- a/ffmpeg.c
+++ b/ffmpeg.c
@@ -878,9 +878,8 @@ static int configure_audio_filters(FilterGraph *fg, AVFilterContext **in_filter,
#define AUTO_INSERT_FILTER(opt_name, filter_name, arg) do { \
AVFilterContext *filt_ctx; \
\
- av_log(NULL, AV_LOG_WARNING, opt_name " has been deprecated. " \
- "Use the " filter_name " filter instead " \
- "(-af " filter_name "=%s).\n", arg); \
+ av_log(NULL, AV_LOG_INFO, opt_name " is forwarded to lavfi " \
+ "similarly to -af " filter_name "=%s.\n", arg); \
\
ret = avfilter_graph_create_filter(&filt_ctx, \
avfilter_get_by_name(filter_name), \
More information about the ffmpeg-cvslog
mailing list