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