diff options
author | Nicolas George <nicolas.george@normalesup.org> | 2012-06-07 20:10:10 +0200 |
---|---|---|
committer | Nicolas George <nicolas.george@normalesup.org> | 2012-06-09 08:42:50 +0200 |
commit | 0f621256439f0dbe77ea1b01293dfb8711fa93c2 (patch) | |
tree | 7aeb9abbbfdbaed92835c5d96b1cb6ceef42efe1 /libavfilter | |
parent | 9ca440679dc535b31edd569393d8d3dda59db90e (diff) | |
download | ffmpeg-0f621256439f0dbe77ea1b01293dfb8711fa93c2.tar.gz |
buffersrc: deprecate flat options syntax.
Diffstat (limited to 'libavfilter')
-rw-r--r-- | libavfilter/buffersrc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/buffersrc.c b/libavfilter/buffersrc.c index 6b78f81b38..b339dd79f5 100644 --- a/libavfilter/buffersrc.c +++ b/libavfilter/buffersrc.c @@ -267,6 +267,7 @@ static av_cold int init_video(AVFilterContext *ctx, const char *args, void *opaq ret = AVERROR(EINVAL); goto fail; } + av_log(ctx, AV_LOG_WARNING, "Flat options syntax is deprecated, use key=value pairs.\n"); if ((ret = ff_parse_pixel_format(&c->pix_fmt, pix_fmt_str, ctx)) < 0) goto fail; |