diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:06:53 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-05-24 15:25:52 +0200 |
commit | a2abd58a090216ebd2a02fa27ae3068c141b5e5e (patch) | |
tree | 4b3a08f3cf08546bb27a3f985b95d490ac08b0cb | |
parent | 558ce3e5b74c37546c66a26e4e03733d4f09ed76 (diff) | |
download | ffmpeg-a2abd58a090216ebd2a02fa27ae3068c141b5e5e.tar.gz |
avfilter: remove av_opt_set_defaults() from process_options()
This is already called from ff_filter_alloc()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 1ea6d8dbfe..c10a81bfb7 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -717,8 +717,6 @@ static int process_options(AVFilterContext *ctx, AVDictionary **options, const char *key; int offset= -1; - av_opt_set_defaults(ctx); - if (!args) return 0; |