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