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

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-06-07 22:10:10 +0400
committerNicolas George <nicolas.george@normalesup.org>2012-06-09 10:42:50 +0400
commit0f621256439f0dbe77ea1b01293dfb8711fa93c2 (patch)
tree7aeb9abbbfdbaed92835c5d96b1cb6ceef42efe1 /libavfilter
parent9ca440679dc535b31edd569393d8d3dda59db90e (diff)
buffersrc: deprecate flat options syntax.
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/buffersrc.c1
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;