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