]> git.sesse.net Git - ffmpeg/blob - libavfilter/avfilter.c
Merge commit 'afdff8008149515afebf9992eae84be7d76e6b1e'
[ffmpeg] / libavfilter / avfilter.c
1 /*
2  * filter layer
3  * Copyright (c) 2007 Bobby Bingham
4  *
5  * This file is part of FFmpeg.
6  *
7  * FFmpeg is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * FFmpeg is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with FFmpeg; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/atomic.h"
23 #include "libavutil/avassert.h"
24 #include "libavutil/avstring.h"
25 #include "libavutil/channel_layout.h"
26 #include "libavutil/common.h"
27 #include "libavutil/eval.h"
28 #include "libavutil/imgutils.h"
29 #include "libavutil/internal.h"
30 #include "libavutil/opt.h"
31 #include "libavutil/pixdesc.h"
32 #include "libavutil/rational.h"
33 #include "libavutil/samplefmt.h"
34
35 #include "audio.h"
36 #include "avfilter.h"
37 #include "formats.h"
38 #include "internal.h"
39
40 #include "libavutil/ffversion.h"
41 const char av_filter_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
42
43 static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame);
44
45 void ff_tlog_ref(void *ctx, AVFrame *ref, int end)
46 {
47     av_unused char buf[16];
48     ff_tlog(ctx,
49             "ref[%p buf:%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
50             ref, ref->buf, ref->data[0],
51             ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
52             ref->pts, av_frame_get_pkt_pos(ref));
53
54     if (ref->width) {
55         ff_tlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c",
56                 ref->sample_aspect_ratio.num, ref->sample_aspect_ratio.den,
57                 ref->width, ref->height,
58                 !ref->interlaced_frame     ? 'P' :         /* Progressive  */
59                 ref->top_field_first ? 'T' : 'B',    /* Top / Bottom */
60                 ref->key_frame,
61                 av_get_picture_type_char(ref->pict_type));
62     }
63     if (ref->nb_samples) {
64         ff_tlog(ctx, " cl:%"PRId64"d n:%d r:%d",
65                 ref->channel_layout,
66                 ref->nb_samples,
67                 ref->sample_rate);
68     }
69
70     ff_tlog(ctx, "]%s", end ? "\n" : "");
71 }
72
73 unsigned avfilter_version(void)
74 {
75     av_assert0(LIBAVFILTER_VERSION_MICRO >= 100);
76     return LIBAVFILTER_VERSION_INT;
77 }
78
79 const char *avfilter_configuration(void)
80 {
81     return FFMPEG_CONFIGURATION;
82 }
83
84 const char *avfilter_license(void)
85 {
86 #define LICENSE_PREFIX "libavfilter license: "
87     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
88 }
89
90 void ff_command_queue_pop(AVFilterContext *filter)
91 {
92     AVFilterCommand *c= filter->command_queue;
93     av_freep(&c->arg);
94     av_freep(&c->command);
95     filter->command_queue= c->next;
96     av_free(c);
97 }
98
99 int ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
100                    AVFilterPad **pads, AVFilterLink ***links,
101                    AVFilterPad *newpad)
102 {
103     AVFilterLink **newlinks;
104     AVFilterPad *newpads;
105     unsigned i;
106
107     idx = FFMIN(idx, *count);
108
109     newpads  = av_realloc_array(*pads,  *count + 1, sizeof(AVFilterPad));
110     newlinks = av_realloc_array(*links, *count + 1, sizeof(AVFilterLink*));
111     if (newpads)
112         *pads  = newpads;
113     if (newlinks)
114         *links = newlinks;
115     if (!newpads || !newlinks)
116         return AVERROR(ENOMEM);
117
118     memmove(*pads  + idx + 1, *pads  + idx, sizeof(AVFilterPad)   * (*count - idx));
119     memmove(*links + idx + 1, *links + idx, sizeof(AVFilterLink*) * (*count - idx));
120     memcpy(*pads + idx, newpad, sizeof(AVFilterPad));
121     (*links)[idx] = NULL;
122
123     (*count)++;
124     for (i = idx + 1; i < *count; i++)
125         if ((*links)[i])
126             (*(unsigned *)((uint8_t *) (*links)[i] + padidx_off))++;
127
128     return 0;
129 }
130
131 int avfilter_link(AVFilterContext *src, unsigned srcpad,
132                   AVFilterContext *dst, unsigned dstpad)
133 {
134     AVFilterLink *link;
135
136     if (src->nb_outputs <= srcpad || dst->nb_inputs <= dstpad ||
137         src->outputs[srcpad]      || dst->inputs[dstpad])
138         return AVERROR(EINVAL);
139
140     if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
141         av_log(src, AV_LOG_ERROR,
142                "Media type mismatch between the '%s' filter output pad %d (%s) and the '%s' filter input pad %d (%s)\n",
143                src->name, srcpad, (char *)av_x_if_null(av_get_media_type_string(src->output_pads[srcpad].type), "?"),
144                dst->name, dstpad, (char *)av_x_if_null(av_get_media_type_string(dst-> input_pads[dstpad].type), "?"));
145         return AVERROR(EINVAL);
146     }
147
148     link = av_mallocz(sizeof(*link));
149     if (!link)
150         return AVERROR(ENOMEM);
151
152     src->outputs[srcpad] = dst->inputs[dstpad] = link;
153
154     link->src     = src;
155     link->dst     = dst;
156     link->srcpad  = &src->output_pads[srcpad];
157     link->dstpad  = &dst->input_pads[dstpad];
158     link->type    = src->output_pads[srcpad].type;
159     av_assert0(AV_PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1);
160     link->format  = -1;
161
162     return 0;
163 }
164
165 void avfilter_link_free(AVFilterLink **link)
166 {
167     if (!*link)
168         return;
169
170     av_frame_free(&(*link)->partial_buf);
171
172     av_freep(link);
173 }
174
175 int avfilter_link_get_channels(AVFilterLink *link)
176 {
177     return link->channels;
178 }
179
180 void avfilter_link_set_closed(AVFilterLink *link, int closed)
181 {
182     link->closed = closed;
183 }
184
185 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
186                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
187 {
188     int ret;
189     unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
190
191     av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' "
192            "between the filter '%s' and the filter '%s'\n",
193            filt->name, link->src->name, link->dst->name);
194
195     link->dst->inputs[dstpad_idx] = NULL;
196     if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
197         /* failed to link output filter to new filter */
198         link->dst->inputs[dstpad_idx] = link;
199         return ret;
200     }
201
202     /* re-hookup the link to the new destination filter we inserted */
203     link->dst                     = filt;
204     link->dstpad                  = &filt->input_pads[filt_srcpad_idx];
205     filt->inputs[filt_srcpad_idx] = link;
206
207     /* if any information on supported media formats already exists on the
208      * link, we need to preserve that */
209     if (link->out_formats)
210         ff_formats_changeref(&link->out_formats,
211                              &filt->outputs[filt_dstpad_idx]->out_formats);
212     if (link->out_samplerates)
213         ff_formats_changeref(&link->out_samplerates,
214                              &filt->outputs[filt_dstpad_idx]->out_samplerates);
215     if (link->out_channel_layouts)
216         ff_channel_layouts_changeref(&link->out_channel_layouts,
217                                      &filt->outputs[filt_dstpad_idx]->out_channel_layouts);
218
219     return 0;
220 }
221
222 int avfilter_config_links(AVFilterContext *filter)
223 {
224     int (*config_link)(AVFilterLink *);
225     unsigned i;
226     int ret;
227
228     for (i = 0; i < filter->nb_inputs; i ++) {
229         AVFilterLink *link = filter->inputs[i];
230         AVFilterLink *inlink;
231
232         if (!link) continue;
233         if (!link->src || !link->dst) {
234             av_log(filter, AV_LOG_ERROR,
235                    "Not all input and output are properly linked (%d).\n", i);
236             return AVERROR(EINVAL);
237         }
238
239         inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
240         link->current_pts = AV_NOPTS_VALUE;
241
242         switch (link->init_state) {
243         case AVLINK_INIT:
244             continue;
245         case AVLINK_STARTINIT:
246             av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
247             return 0;
248         case AVLINK_UNINIT:
249             link->init_state = AVLINK_STARTINIT;
250
251             if ((ret = avfilter_config_links(link->src)) < 0)
252                 return ret;
253
254             if (!(config_link = link->srcpad->config_props)) {
255                 if (link->src->nb_inputs != 1) {
256                     av_log(link->src, AV_LOG_ERROR, "Source filters and filters "
257                                                     "with more than one input "
258                                                     "must set config_props() "
259                                                     "callbacks on all outputs\n");
260                     return AVERROR(EINVAL);
261                 }
262             } else if ((ret = config_link(link)) < 0) {
263                 av_log(link->src, AV_LOG_ERROR,
264                        "Failed to configure output pad on %s\n",
265                        link->src->name);
266                 return ret;
267             }
268
269             switch (link->type) {
270             case AVMEDIA_TYPE_VIDEO:
271                 if (!link->time_base.num && !link->time_base.den)
272                     link->time_base = inlink ? inlink->time_base : AV_TIME_BASE_Q;
273
274                 if (!link->sample_aspect_ratio.num && !link->sample_aspect_ratio.den)
275                     link->sample_aspect_ratio = inlink ?
276                         inlink->sample_aspect_ratio : (AVRational){1,1};
277
278                 if (inlink) {
279                     if (!link->frame_rate.num && !link->frame_rate.den)
280                         link->frame_rate = inlink->frame_rate;
281                     if (!link->w)
282                         link->w = inlink->w;
283                     if (!link->h)
284                         link->h = inlink->h;
285                 } else if (!link->w || !link->h) {
286                     av_log(link->src, AV_LOG_ERROR,
287                            "Video source filters must set their output link's "
288                            "width and height\n");
289                     return AVERROR(EINVAL);
290                 }
291                 break;
292
293             case AVMEDIA_TYPE_AUDIO:
294                 if (inlink) {
295                     if (!link->time_base.num && !link->time_base.den)
296                         link->time_base = inlink->time_base;
297                 }
298
299                 if (!link->time_base.num && !link->time_base.den)
300                     link->time_base = (AVRational) {1, link->sample_rate};
301             }
302
303             if ((config_link = link->dstpad->config_props))
304                 if ((ret = config_link(link)) < 0) {
305                     av_log(link->dst, AV_LOG_ERROR,
306                            "Failed to configure input pad on %s\n",
307                            link->dst->name);
308                     return ret;
309                 }
310
311             link->init_state = AVLINK_INIT;
312         }
313     }
314
315     return 0;
316 }
317
318 void ff_tlog_link(void *ctx, AVFilterLink *link, int end)
319 {
320     if (link->type == AVMEDIA_TYPE_VIDEO) {
321         ff_tlog(ctx,
322                 "link[%p s:%dx%d fmt:%s %s->%s]%s",
323                 link, link->w, link->h,
324                 av_get_pix_fmt_name(link->format),
325                 link->src ? link->src->filter->name : "",
326                 link->dst ? link->dst->filter->name : "",
327                 end ? "\n" : "");
328     } else {
329         char buf[128];
330         av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);
331
332         ff_tlog(ctx,
333                 "link[%p r:%d cl:%s fmt:%s %s->%s]%s",
334                 link, (int)link->sample_rate, buf,
335                 av_get_sample_fmt_name(link->format),
336                 link->src ? link->src->filter->name : "",
337                 link->dst ? link->dst->filter->name : "",
338                 end ? "\n" : "");
339     }
340 }
341
342 int ff_request_frame(AVFilterLink *link)
343 {
344     int ret = -1;
345     FF_TPRINTF_START(NULL, request_frame); ff_tlog_link(NULL, link, 1);
346
347     if (link->closed)
348         return AVERROR_EOF;
349     if (link->srcpad->request_frame)
350         ret = link->srcpad->request_frame(link);
351     else if (link->src->inputs[0])
352         ret = ff_request_frame(link->src->inputs[0]);
353     if (ret == AVERROR_EOF && link->partial_buf) {
354         AVFrame *pbuf = link->partial_buf;
355         link->partial_buf = NULL;
356         ret = ff_filter_frame_framed(link, pbuf);
357     }
358     if (ret < 0) {
359         if (ret == AVERROR_EOF)
360             link->closed = 1;
361     }
362     return ret;
363 }
364
365 int ff_poll_frame(AVFilterLink *link)
366 {
367     int i, min = INT_MAX;
368
369     if (link->srcpad->poll_frame)
370         return link->srcpad->poll_frame(link);
371
372     for (i = 0; i < link->src->nb_inputs; i++) {
373         int val;
374         if (!link->src->inputs[i])
375             return AVERROR(EINVAL);
376         val = ff_poll_frame(link->src->inputs[i]);
377         min = FFMIN(min, val);
378     }
379
380     return min;
381 }
382
383 static const char *const var_names[] = {
384     "t",
385     "n",
386     "pos",
387     "w",
388     "h",
389     NULL
390 };
391
392 enum {
393     VAR_T,
394     VAR_N,
395     VAR_POS,
396     VAR_W,
397     VAR_H,
398     VAR_VARS_NB
399 };
400
401 static int set_enable_expr(AVFilterContext *ctx, const char *expr)
402 {
403     int ret;
404     char *expr_dup;
405     AVExpr *old = ctx->enable;
406
407     if (!(ctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE)) {
408         av_log(ctx, AV_LOG_ERROR, "Timeline ('enable' option) not supported "
409                "with filter '%s'\n", ctx->filter->name);
410         return AVERROR_PATCHWELCOME;
411     }
412
413     expr_dup = av_strdup(expr);
414     if (!expr_dup)
415         return AVERROR(ENOMEM);
416
417     if (!ctx->var_values) {
418         ctx->var_values = av_calloc(VAR_VARS_NB, sizeof(*ctx->var_values));
419         if (!ctx->var_values) {
420             av_free(expr_dup);
421             return AVERROR(ENOMEM);
422         }
423     }
424
425     ret = av_expr_parse((AVExpr**)&ctx->enable, expr_dup, var_names,
426                         NULL, NULL, NULL, NULL, 0, ctx->priv);
427     if (ret < 0) {
428         av_log(ctx->priv, AV_LOG_ERROR,
429                "Error when evaluating the expression '%s' for enable\n",
430                expr_dup);
431         av_free(expr_dup);
432         return ret;
433     }
434
435     av_expr_free(old);
436     av_free(ctx->enable_str);
437     ctx->enable_str = expr_dup;
438     return 0;
439 }
440
441 void ff_update_link_current_pts(AVFilterLink *link, int64_t pts)
442 {
443     if (pts == AV_NOPTS_VALUE)
444         return;
445     link->current_pts = av_rescale_q(pts, link->time_base, AV_TIME_BASE_Q);
446     /* TODO use duration */
447     if (link->graph && link->age_index >= 0)
448         ff_avfilter_graph_update_heap(link->graph, link);
449 }
450
451 int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags)
452 {
453     if(!strcmp(cmd, "ping")){
454         char local_res[256] = {0};
455
456         if (!res) {
457             res = local_res;
458             res_len = sizeof(local_res);
459         }
460         av_strlcatf(res, res_len, "pong from:%s %s\n", filter->filter->name, filter->name);
461         if (res == local_res)
462             av_log(filter, AV_LOG_INFO, "%s", res);
463         return 0;
464     }else if(!strcmp(cmd, "enable")) {
465         return set_enable_expr(filter, arg);
466     }else if(filter->filter->process_command) {
467         return filter->filter->process_command(filter, cmd, arg, res, res_len, flags);
468     }
469     return AVERROR(ENOSYS);
470 }
471
472 static AVFilter *first_filter;
473 static AVFilter **last_filter = &first_filter;
474
475 #if !FF_API_NOCONST_GET_NAME
476 const
477 #endif
478 AVFilter *avfilter_get_by_name(const char *name)
479 {
480     const AVFilter *f = NULL;
481
482     if (!name)
483         return NULL;
484
485     while ((f = avfilter_next(f)))
486         if (!strcmp(f->name, name))
487             return (AVFilter *)f;
488
489     return NULL;
490 }
491
492 int avfilter_register(AVFilter *filter)
493 {
494     AVFilter **f = last_filter;
495
496     /* the filter must select generic or internal exclusively */
497     av_assert0((filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE) != AVFILTER_FLAG_SUPPORT_TIMELINE);
498
499     filter->next = NULL;
500
501     while(*f || avpriv_atomic_ptr_cas((void * volatile *)f, NULL, filter))
502         f = &(*f)->next;
503     last_filter = &filter->next;
504
505     return 0;
506 }
507
508 const AVFilter *avfilter_next(const AVFilter *prev)
509 {
510     return prev ? prev->next : first_filter;
511 }
512
513 #if FF_API_OLD_FILTER_REGISTER
514 AVFilter **av_filter_next(AVFilter **filter)
515 {
516     return filter ? &(*filter)->next : &first_filter;
517 }
518
519 void avfilter_uninit(void)
520 {
521 }
522 #endif
523
524 int avfilter_pad_count(const AVFilterPad *pads)
525 {
526     int count;
527
528     if (!pads)
529         return 0;
530
531     for (count = 0; pads->name; count++)
532         pads++;
533     return count;
534 }
535
536 static const char *default_filter_name(void *filter_ctx)
537 {
538     AVFilterContext *ctx = filter_ctx;
539     return ctx->name ? ctx->name : ctx->filter->name;
540 }
541
542 static void *filter_child_next(void *obj, void *prev)
543 {
544     AVFilterContext *ctx = obj;
545     if (!prev && ctx->filter && ctx->filter->priv_class && ctx->priv)
546         return ctx->priv;
547     return NULL;
548 }
549
550 static const AVClass *filter_child_class_next(const AVClass *prev)
551 {
552     const AVFilter *f = NULL;
553
554     /* find the filter that corresponds to prev */
555     while (prev && (f = avfilter_next(f)))
556         if (f->priv_class == prev)
557             break;
558
559     /* could not find filter corresponding to prev */
560     if (prev && !f)
561         return NULL;
562
563     /* find next filter with specific options */
564     while ((f = avfilter_next(f)))
565         if (f->priv_class)
566             return f->priv_class;
567
568     return NULL;
569 }
570
571 #define OFFSET(x) offsetof(AVFilterContext, x)
572 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM
573 static const AVOption avfilter_options[] = {
574     { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS,
575         { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, "thread_type" },
576         { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .unit = "thread_type" },
577     { "enable", "set enable expression", OFFSET(enable_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
578     { NULL },
579 };
580
581 static const AVClass avfilter_class = {
582     .class_name = "AVFilter",
583     .item_name  = default_filter_name,
584     .version    = LIBAVUTIL_VERSION_INT,
585     .category   = AV_CLASS_CATEGORY_FILTER,
586     .child_next = filter_child_next,
587     .child_class_next = filter_child_class_next,
588     .option           = avfilter_options,
589 };
590
591 static int default_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg,
592                            int *ret, int nb_jobs)
593 {
594     int i;
595
596     for (i = 0; i < nb_jobs; i++) {
597         int r = func(ctx, arg, i, nb_jobs);
598         if (ret)
599             ret[i] = r;
600     }
601     return 0;
602 }
603
604 AVFilterContext *ff_filter_alloc(const AVFilter *filter, const char *inst_name)
605 {
606     AVFilterContext *ret;
607
608     if (!filter)
609         return NULL;
610
611     ret = av_mallocz(sizeof(AVFilterContext));
612     if (!ret)
613         return NULL;
614
615     ret->av_class = &avfilter_class;
616     ret->filter   = filter;
617     ret->name     = inst_name ? av_strdup(inst_name) : NULL;
618     if (filter->priv_size) {
619         ret->priv     = av_mallocz(filter->priv_size);
620         if (!ret->priv)
621             goto err;
622     }
623
624     av_opt_set_defaults(ret);
625     if (filter->priv_class) {
626         *(const AVClass**)ret->priv = filter->priv_class;
627         av_opt_set_defaults(ret->priv);
628     }
629
630     ret->internal = av_mallocz(sizeof(*ret->internal));
631     if (!ret->internal)
632         goto err;
633     ret->internal->execute = default_execute;
634
635     ret->nb_inputs = avfilter_pad_count(filter->inputs);
636     if (ret->nb_inputs ) {
637         ret->input_pads   = av_malloc_array(ret->nb_inputs, sizeof(AVFilterPad));
638         if (!ret->input_pads)
639             goto err;
640         memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->nb_inputs);
641         ret->inputs       = av_mallocz_array(ret->nb_inputs, sizeof(AVFilterLink*));
642         if (!ret->inputs)
643             goto err;
644     }
645
646     ret->nb_outputs = avfilter_pad_count(filter->outputs);
647     if (ret->nb_outputs) {
648         ret->output_pads  = av_malloc_array(ret->nb_outputs, sizeof(AVFilterPad));
649         if (!ret->output_pads)
650             goto err;
651         memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->nb_outputs);
652         ret->outputs      = av_mallocz_array(ret->nb_outputs, sizeof(AVFilterLink*));
653         if (!ret->outputs)
654             goto err;
655     }
656
657     return ret;
658
659 err:
660     av_freep(&ret->inputs);
661     av_freep(&ret->input_pads);
662     ret->nb_inputs = 0;
663     av_freep(&ret->outputs);
664     av_freep(&ret->output_pads);
665     ret->nb_outputs = 0;
666     av_freep(&ret->priv);
667     av_freep(&ret->internal);
668     av_free(ret);
669     return NULL;
670 }
671
672 #if FF_API_AVFILTER_OPEN
673 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
674 {
675     *filter_ctx = ff_filter_alloc(filter, inst_name);
676     return *filter_ctx ? 0 : AVERROR(ENOMEM);
677 }
678 #endif
679
680 static void free_link(AVFilterLink *link)
681 {
682     if (!link)
683         return;
684
685     if (link->src)
686         link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
687     if (link->dst)
688         link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
689
690     ff_formats_unref(&link->in_formats);
691     ff_formats_unref(&link->out_formats);
692     ff_formats_unref(&link->in_samplerates);
693     ff_formats_unref(&link->out_samplerates);
694     ff_channel_layouts_unref(&link->in_channel_layouts);
695     ff_channel_layouts_unref(&link->out_channel_layouts);
696     avfilter_link_free(&link);
697 }
698
699 void avfilter_free(AVFilterContext *filter)
700 {
701     int i;
702
703     if (!filter)
704         return;
705
706     if (filter->graph)
707         ff_filter_graph_remove_filter(filter->graph, filter);
708
709     if (filter->filter->uninit)
710         filter->filter->uninit(filter);
711
712     for (i = 0; i < filter->nb_inputs; i++) {
713         free_link(filter->inputs[i]);
714     }
715     for (i = 0; i < filter->nb_outputs; i++) {
716         free_link(filter->outputs[i]);
717     }
718
719     if (filter->filter->priv_class)
720         av_opt_free(filter->priv);
721
722     av_freep(&filter->name);
723     av_freep(&filter->input_pads);
724     av_freep(&filter->output_pads);
725     av_freep(&filter->inputs);
726     av_freep(&filter->outputs);
727     av_freep(&filter->priv);
728     while(filter->command_queue){
729         ff_command_queue_pop(filter);
730     }
731     av_opt_free(filter);
732     av_expr_free(filter->enable);
733     filter->enable = NULL;
734     av_freep(&filter->var_values);
735     av_freep(&filter->internal);
736     av_free(filter);
737 }
738
739 static int process_options(AVFilterContext *ctx, AVDictionary **options,
740                            const char *args)
741 {
742     const AVOption *o = NULL;
743     int ret, count = 0;
744     char *av_uninit(parsed_key), *av_uninit(value);
745     const char *key;
746     int offset= -1;
747
748     if (!args)
749         return 0;
750
751     while (*args) {
752         const char *shorthand = NULL;
753
754         o = av_opt_next(ctx->priv, o);
755         if (o) {
756             if (o->type == AV_OPT_TYPE_CONST || o->offset == offset)
757                 continue;
758             offset = o->offset;
759             shorthand = o->name;
760         }
761
762         ret = av_opt_get_key_value(&args, "=", ":",
763                                    shorthand ? AV_OPT_FLAG_IMPLICIT_KEY : 0,
764                                    &parsed_key, &value);
765         if (ret < 0) {
766             if (ret == AVERROR(EINVAL))
767                 av_log(ctx, AV_LOG_ERROR, "No option name near '%s'\n", args);
768             else
769                 av_log(ctx, AV_LOG_ERROR, "Unable to parse '%s': %s\n", args,
770                        av_err2str(ret));
771             return ret;
772         }
773         if (*args)
774             args++;
775         if (parsed_key) {
776             key = parsed_key;
777             while ((o = av_opt_next(ctx->priv, o))); /* discard all remaining shorthand */
778         } else {
779             key = shorthand;
780         }
781
782         av_log(ctx, AV_LOG_DEBUG, "Setting '%s' to value '%s'\n", key, value);
783
784         if (av_opt_find(ctx, key, NULL, 0, 0)) {
785             ret = av_opt_set(ctx, key, value, 0);
786             if (ret < 0) {
787                 av_free(value);
788                 av_free(parsed_key);
789                 return ret;
790             }
791         } else {
792         av_dict_set(options, key, value, 0);
793         if ((ret = av_opt_set(ctx->priv, key, value, 0)) < 0) {
794             if (!av_opt_find(ctx->priv, key, NULL, 0, AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) {
795             if (ret == AVERROR_OPTION_NOT_FOUND)
796                 av_log(ctx, AV_LOG_ERROR, "Option '%s' not found\n", key);
797             av_free(value);
798             av_free(parsed_key);
799             return ret;
800             }
801         }
802         }
803
804         av_free(value);
805         av_free(parsed_key);
806         count++;
807     }
808
809     if (ctx->enable_str) {
810         ret = set_enable_expr(ctx, ctx->enable_str);
811         if (ret < 0)
812             return ret;
813     }
814     return count;
815 }
816
817 #if FF_API_AVFILTER_INIT_FILTER
818 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
819 {
820     return avfilter_init_str(filter, args);
821 }
822 #endif
823
824 int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options)
825 {
826     int ret = 0;
827
828     ret = av_opt_set_dict(ctx, options);
829     if (ret < 0) {
830         av_log(ctx, AV_LOG_ERROR, "Error applying generic filter options.\n");
831         return ret;
832     }
833
834     if (ctx->filter->flags & AVFILTER_FLAG_SLICE_THREADS &&
835         ctx->thread_type & ctx->graph->thread_type & AVFILTER_THREAD_SLICE &&
836         ctx->graph->internal->thread_execute) {
837         ctx->thread_type       = AVFILTER_THREAD_SLICE;
838         ctx->internal->execute = ctx->graph->internal->thread_execute;
839     } else {
840         ctx->thread_type = 0;
841     }
842
843     if (ctx->filter->priv_class) {
844         ret = av_opt_set_dict(ctx->priv, options);
845         if (ret < 0) {
846             av_log(ctx, AV_LOG_ERROR, "Error applying options to the filter.\n");
847             return ret;
848         }
849     }
850
851     if (ctx->filter->init_opaque)
852         ret = ctx->filter->init_opaque(ctx, NULL);
853     else if (ctx->filter->init)
854         ret = ctx->filter->init(ctx);
855     else if (ctx->filter->init_dict)
856         ret = ctx->filter->init_dict(ctx, options);
857
858     return ret;
859 }
860
861 int avfilter_init_str(AVFilterContext *filter, const char *args)
862 {
863     AVDictionary *options = NULL;
864     AVDictionaryEntry *e;
865     int ret = 0;
866
867     if (args && *args) {
868         if (!filter->filter->priv_class) {
869             av_log(filter, AV_LOG_ERROR, "This filter does not take any "
870                    "options, but options were provided: %s.\n", args);
871             return AVERROR(EINVAL);
872         }
873
874 #if FF_API_OLD_FILTER_OPTS || FF_API_OLD_FILTER_OPTS_ERROR
875             if (   !strcmp(filter->filter->name, "format")     ||
876                    !strcmp(filter->filter->name, "noformat")   ||
877                    !strcmp(filter->filter->name, "frei0r")     ||
878                    !strcmp(filter->filter->name, "frei0r_src") ||
879                    !strcmp(filter->filter->name, "ocv")        ||
880                    !strcmp(filter->filter->name, "pan")        ||
881                    !strcmp(filter->filter->name, "pp")         ||
882                    !strcmp(filter->filter->name, "aevalsrc")) {
883             /* a hack for compatibility with the old syntax
884              * replace colons with |s */
885             char *copy = av_strdup(args);
886             char *p    = copy;
887             int nb_leading = 0; // number of leading colons to skip
888             int deprecated = 0;
889
890             if (!copy) {
891                 ret = AVERROR(ENOMEM);
892                 goto fail;
893             }
894
895             if (!strcmp(filter->filter->name, "frei0r") ||
896                 !strcmp(filter->filter->name, "ocv"))
897                 nb_leading = 1;
898             else if (!strcmp(filter->filter->name, "frei0r_src"))
899                 nb_leading = 3;
900
901             while (nb_leading--) {
902                 p = strchr(p, ':');
903                 if (!p) {
904                     p = copy + strlen(copy);
905                     break;
906                 }
907                 p++;
908             }
909
910             deprecated = strchr(p, ':') != NULL;
911
912             if (!strcmp(filter->filter->name, "aevalsrc")) {
913                 deprecated = 0;
914                 while ((p = strchr(p, ':')) && p[1] != ':') {
915                     const char *epos = strchr(p + 1, '=');
916                     const char *spos = strchr(p + 1, ':');
917                     const int next_token_is_opt = epos && (!spos || epos < spos);
918                     if (next_token_is_opt) {
919                         p++;
920                         break;
921                     }
922                     /* next token does not contain a '=', assume a channel expression */
923                     deprecated = 1;
924                     *p++ = '|';
925                 }
926                 if (p && *p == ':') { // double sep '::' found
927                     deprecated = 1;
928                     memmove(p, p + 1, strlen(p));
929                 }
930             } else
931             while ((p = strchr(p, ':')))
932                 *p++ = '|';
933
934 #if FF_API_OLD_FILTER_OPTS
935             if (deprecated)
936                 av_log(filter, AV_LOG_WARNING, "This syntax is deprecated. Use "
937                        "'|' to separate the list items.\n");
938
939             av_log(filter, AV_LOG_DEBUG, "compat: called with args=[%s]\n", copy);
940             ret = process_options(filter, &options, copy);
941 #else
942             if (deprecated) {
943                 av_log(filter, AV_LOG_ERROR, "This syntax is deprecated. Use "
944                        "'|' to separate the list items ('%s' instead of '%s')\n",
945                        copy, args);
946                 ret = AVERROR(EINVAL);
947             } else {
948                 ret = process_options(filter, &options, copy);
949             }
950 #endif
951             av_freep(&copy);
952
953             if (ret < 0)
954                 goto fail;
955         } else
956 #endif
957         {
958             ret = process_options(filter, &options, args);
959             if (ret < 0)
960                 goto fail;
961         }
962     }
963
964     ret = avfilter_init_dict(filter, &options);
965     if (ret < 0)
966         goto fail;
967
968     if ((e = av_dict_get(options, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
969         av_log(filter, AV_LOG_ERROR, "No such option: %s.\n", e->key);
970         ret = AVERROR_OPTION_NOT_FOUND;
971         goto fail;
972     }
973
974 fail:
975     av_dict_free(&options);
976
977     return ret;
978 }
979
980 const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
981 {
982     return pads[pad_idx].name;
983 }
984
985 enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
986 {
987     return pads[pad_idx].type;
988 }
989
990 static int default_filter_frame(AVFilterLink *link, AVFrame *frame)
991 {
992     return ff_filter_frame(link->dst->outputs[0], frame);
993 }
994
995 static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
996 {
997     int (*filter_frame)(AVFilterLink *, AVFrame *);
998     AVFilterContext *dstctx = link->dst;
999     AVFilterPad *dst = link->dstpad;
1000     AVFrame *out = NULL;
1001     int ret;
1002     AVFilterCommand *cmd= link->dst->command_queue;
1003     int64_t pts;
1004
1005     if (link->closed) {
1006         av_frame_free(&frame);
1007         return AVERROR_EOF;
1008     }
1009
1010     if (!(filter_frame = dst->filter_frame))
1011         filter_frame = default_filter_frame;
1012
1013     /* copy the frame if needed */
1014     if (dst->needs_writable && !av_frame_is_writable(frame)) {
1015         av_log(link->dst, AV_LOG_DEBUG, "Copying data in avfilter.\n");
1016
1017         switch (link->type) {
1018         case AVMEDIA_TYPE_VIDEO:
1019             out = ff_get_video_buffer(link, link->w, link->h);
1020             break;
1021         case AVMEDIA_TYPE_AUDIO:
1022             out = ff_get_audio_buffer(link, frame->nb_samples);
1023             break;
1024         default:
1025             ret = AVERROR(EINVAL);
1026             goto fail;
1027         }
1028         if (!out) {
1029             ret = AVERROR(ENOMEM);
1030             goto fail;
1031         }
1032
1033         ret = av_frame_copy_props(out, frame);
1034         if (ret < 0)
1035             goto fail;
1036
1037         switch (link->type) {
1038         case AVMEDIA_TYPE_VIDEO:
1039             av_image_copy(out->data, out->linesize, (const uint8_t **)frame->data, frame->linesize,
1040                           frame->format, frame->width, frame->height);
1041             break;
1042         case AVMEDIA_TYPE_AUDIO:
1043             av_samples_copy(out->extended_data, frame->extended_data,
1044                             0, 0, frame->nb_samples,
1045                             av_get_channel_layout_nb_channels(frame->channel_layout),
1046                             frame->format);
1047             break;
1048         default:
1049             ret = AVERROR(EINVAL);
1050             goto fail;
1051         }
1052
1053         av_frame_free(&frame);
1054     } else
1055         out = frame;
1056
1057     while(cmd && cmd->time <= out->pts * av_q2d(link->time_base)){
1058         av_log(link->dst, AV_LOG_DEBUG,
1059                "Processing command time:%f command:%s arg:%s\n",
1060                cmd->time, cmd->command, cmd->arg);
1061         avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags);
1062         ff_command_queue_pop(link->dst);
1063         cmd= link->dst->command_queue;
1064     }
1065
1066     pts = out->pts;
1067     if (dstctx->enable_str) {
1068         int64_t pos = av_frame_get_pkt_pos(out);
1069         dstctx->var_values[VAR_N] = link->frame_count;
1070         dstctx->var_values[VAR_T] = pts == AV_NOPTS_VALUE ? NAN : pts * av_q2d(link->time_base);
1071         dstctx->var_values[VAR_W] = link->w;
1072         dstctx->var_values[VAR_H] = link->h;
1073         dstctx->var_values[VAR_POS] = pos == -1 ? NAN : pos;
1074
1075         dstctx->is_disabled = fabs(av_expr_eval(dstctx->enable, dstctx->var_values, NULL)) < 0.5;
1076         if (dstctx->is_disabled &&
1077             (dstctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC))
1078             filter_frame = default_filter_frame;
1079     }
1080     ret = filter_frame(link, out);
1081     link->frame_count++;
1082     ff_update_link_current_pts(link, pts);
1083     return ret;
1084
1085 fail:
1086     av_frame_free(&out);
1087     av_frame_free(&frame);
1088     return ret;
1089 }
1090
1091 static int ff_filter_frame_needs_framing(AVFilterLink *link, AVFrame *frame)
1092 {
1093     int insamples = frame->nb_samples, inpos = 0, nb_samples;
1094     AVFrame *pbuf = link->partial_buf;
1095     int nb_channels = av_frame_get_channels(frame);
1096     int ret = 0;
1097
1098     /* Handle framing (min_samples, max_samples) */
1099     while (insamples) {
1100         if (!pbuf) {
1101             AVRational samples_tb = { 1, link->sample_rate };
1102             pbuf = ff_get_audio_buffer(link, link->partial_buf_size);
1103             if (!pbuf) {
1104                 av_log(link->dst, AV_LOG_WARNING,
1105                        "Samples dropped due to memory allocation failure.\n");
1106                 return 0;
1107             }
1108             av_frame_copy_props(pbuf, frame);
1109             pbuf->pts = frame->pts;
1110             if (pbuf->pts != AV_NOPTS_VALUE)
1111                 pbuf->pts += av_rescale_q(inpos, samples_tb, link->time_base);
1112             pbuf->nb_samples = 0;
1113         }
1114         nb_samples = FFMIN(insamples,
1115                            link->partial_buf_size - pbuf->nb_samples);
1116         av_samples_copy(pbuf->extended_data, frame->extended_data,
1117                         pbuf->nb_samples, inpos,
1118                         nb_samples, nb_channels, link->format);
1119         inpos                   += nb_samples;
1120         insamples               -= nb_samples;
1121         pbuf->nb_samples += nb_samples;
1122         if (pbuf->nb_samples >= link->min_samples) {
1123             ret = ff_filter_frame_framed(link, pbuf);
1124             pbuf = NULL;
1125         }
1126     }
1127     av_frame_free(&frame);
1128     link->partial_buf = pbuf;
1129     return ret;
1130 }
1131
1132 int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
1133 {
1134     FF_TPRINTF_START(NULL, filter_frame); ff_tlog_link(NULL, link, 1); ff_tlog(NULL, " "); ff_tlog_ref(NULL, frame, 1);
1135
1136     /* Consistency checks */
1137     if (link->type == AVMEDIA_TYPE_VIDEO) {
1138         if (strcmp(link->dst->filter->name, "buffersink") &&
1139             strcmp(link->dst->filter->name, "format") &&
1140             strcmp(link->dst->filter->name, "idet") &&
1141             strcmp(link->dst->filter->name, "null") &&
1142             strcmp(link->dst->filter->name, "scale")) {
1143             av_assert1(frame->format                 == link->format);
1144             av_assert1(frame->width               == link->w);
1145             av_assert1(frame->height               == link->h);
1146         }
1147     } else {
1148         if (frame->format != link->format) {
1149             av_log(link->dst, AV_LOG_ERROR, "Format change is not supported\n");
1150             goto error;
1151         }
1152         if (av_frame_get_channels(frame) != link->channels) {
1153             av_log(link->dst, AV_LOG_ERROR, "Channel count change is not supported\n");
1154             goto error;
1155         }
1156         if (frame->channel_layout != link->channel_layout) {
1157             av_log(link->dst, AV_LOG_ERROR, "Channel layout change is not supported\n");
1158             goto error;
1159         }
1160         if (frame->sample_rate != link->sample_rate) {
1161             av_log(link->dst, AV_LOG_ERROR, "Sample rate change is not supported\n");
1162             goto error;
1163         }
1164     }
1165
1166     /* Go directly to actual filtering if possible */
1167     if (link->type == AVMEDIA_TYPE_AUDIO &&
1168         link->min_samples &&
1169         (link->partial_buf ||
1170          frame->nb_samples < link->min_samples ||
1171          frame->nb_samples > link->max_samples)) {
1172         return ff_filter_frame_needs_framing(link, frame);
1173     } else {
1174         return ff_filter_frame_framed(link, frame);
1175     }
1176 error:
1177     av_frame_free(&frame);
1178     return AVERROR_PATCHWELCOME;
1179 }
1180
1181 const AVClass *avfilter_get_class(void)
1182 {
1183     return &avfilter_class;
1184 }