]> git.sesse.net Git - ffmpeg/blob - libavfilter/avfilter.c
Merge commit 'e67a87eac814c7805d18c983c43033a8a1bd62af'
[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/avassert.h"
23 #include "libavutil/avstring.h"
24 #include "libavutil/channel_layout.h"
25 #include "libavutil/common.h"
26 #include "libavutil/imgutils.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/pixdesc.h"
29 #include "libavutil/rational.h"
30 #include "libavutil/samplefmt.h"
31
32 #include "audio.h"
33 #include "avfilter.h"
34 #include "formats.h"
35 #include "internal.h"
36 #include "audio.h"
37
38 static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame);
39
40 void ff_tlog_ref(void *ctx, AVFrame *ref, int end)
41 {
42     av_unused char buf[16];
43     ff_tlog(ctx,
44             "ref[%p buf:%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
45             ref, ref->buf, ref->data[0],
46             ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
47             ref->pts, av_frame_get_pkt_pos(ref));
48
49     if (ref->width) {
50         ff_tlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c",
51                 ref->sample_aspect_ratio.num, ref->sample_aspect_ratio.den,
52                 ref->width, ref->height,
53                 !ref->interlaced_frame     ? 'P' :         /* Progressive  */
54                 ref->top_field_first ? 'T' : 'B',    /* Top / Bottom */
55                 ref->key_frame,
56                 av_get_picture_type_char(ref->pict_type));
57     }
58     if (ref->nb_samples) {
59         ff_tlog(ctx, " cl:%"PRId64"d n:%d r:%d",
60                 ref->channel_layout,
61                 ref->nb_samples,
62                 ref->sample_rate);
63     }
64
65     ff_tlog(ctx, "]%s", end ? "\n" : "");
66 }
67
68 unsigned avfilter_version(void) {
69     av_assert0(LIBAVFILTER_VERSION_MICRO >= 100);
70     return LIBAVFILTER_VERSION_INT;
71 }
72
73 const char *avfilter_configuration(void)
74 {
75     return FFMPEG_CONFIGURATION;
76 }
77
78 const char *avfilter_license(void)
79 {
80 #define LICENSE_PREFIX "libavfilter license: "
81     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
82 }
83
84 void ff_command_queue_pop(AVFilterContext *filter)
85 {
86     AVFilterCommand *c= filter->command_queue;
87     av_freep(&c->arg);
88     av_freep(&c->command);
89     filter->command_queue= c->next;
90     av_free(c);
91 }
92
93 void ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
94                    AVFilterPad **pads, AVFilterLink ***links,
95                    AVFilterPad *newpad)
96 {
97     unsigned i;
98
99     idx = FFMIN(idx, *count);
100
101     *pads  = av_realloc(*pads,  sizeof(AVFilterPad)   * (*count + 1));
102     *links = av_realloc(*links, sizeof(AVFilterLink*) * (*count + 1));
103     memmove(*pads +idx+1, *pads +idx, sizeof(AVFilterPad)   * (*count-idx));
104     memmove(*links+idx+1, *links+idx, sizeof(AVFilterLink*) * (*count-idx));
105     memcpy(*pads+idx, newpad, sizeof(AVFilterPad));
106     (*links)[idx] = NULL;
107
108     (*count)++;
109     for (i = idx+1; i < *count; i++)
110         if (*links[i])
111             (*(unsigned *)((uint8_t *) *links[i] + padidx_off))++;
112 }
113
114 int avfilter_link(AVFilterContext *src, unsigned srcpad,
115                   AVFilterContext *dst, unsigned dstpad)
116 {
117     AVFilterLink *link;
118
119     if (src->nb_outputs <= srcpad || dst->nb_inputs <= dstpad ||
120         src->outputs[srcpad]      || dst->inputs[dstpad])
121         return -1;
122
123     if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
124         av_log(src, AV_LOG_ERROR,
125                "Media type mismatch between the '%s' filter output pad %d (%s) and the '%s' filter input pad %d (%s)\n",
126                src->name, srcpad, (char *)av_x_if_null(av_get_media_type_string(src->output_pads[srcpad].type), "?"),
127                dst->name, dstpad, (char *)av_x_if_null(av_get_media_type_string(dst-> input_pads[dstpad].type), "?"));
128         return AVERROR(EINVAL);
129     }
130
131     src->outputs[srcpad] =
132     dst-> inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink));
133
134     link->src     = src;
135     link->dst     = dst;
136     link->srcpad  = &src->output_pads[srcpad];
137     link->dstpad  = &dst->input_pads[dstpad];
138     link->type    = src->output_pads[srcpad].type;
139     av_assert0(AV_PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1);
140     link->format  = -1;
141
142     return 0;
143 }
144
145 void avfilter_link_free(AVFilterLink **link)
146 {
147     if (!*link)
148         return;
149
150     av_frame_free(&(*link)->partial_buf);
151
152     av_freep(link);
153 }
154
155 int avfilter_link_get_channels(AVFilterLink *link)
156 {
157     return link->channels;
158 }
159
160 void avfilter_link_set_closed(AVFilterLink *link, int closed)
161 {
162     link->closed = closed;
163 }
164
165 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
166                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
167 {
168     int ret;
169     unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
170
171     av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' "
172            "between the filter '%s' and the filter '%s'\n",
173            filt->name, link->src->name, link->dst->name);
174
175     link->dst->inputs[dstpad_idx] = NULL;
176     if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
177         /* failed to link output filter to new filter */
178         link->dst->inputs[dstpad_idx] = link;
179         return ret;
180     }
181
182     /* re-hookup the link to the new destination filter we inserted */
183     link->dst = filt;
184     link->dstpad = &filt->input_pads[filt_srcpad_idx];
185     filt->inputs[filt_srcpad_idx] = link;
186
187     /* if any information on supported media formats already exists on the
188      * link, we need to preserve that */
189     if (link->out_formats)
190         ff_formats_changeref(&link->out_formats,
191                                    &filt->outputs[filt_dstpad_idx]->out_formats);
192
193     if (link->out_samplerates)
194         ff_formats_changeref(&link->out_samplerates,
195                                    &filt->outputs[filt_dstpad_idx]->out_samplerates);
196     if (link->out_channel_layouts)
197         ff_channel_layouts_changeref(&link->out_channel_layouts,
198                                      &filt->outputs[filt_dstpad_idx]->out_channel_layouts);
199
200     return 0;
201 }
202
203 int avfilter_config_links(AVFilterContext *filter)
204 {
205     int (*config_link)(AVFilterLink *);
206     unsigned i;
207     int ret;
208
209     for (i = 0; i < filter->nb_inputs; i ++) {
210         AVFilterLink *link = filter->inputs[i];
211         AVFilterLink *inlink;
212
213         if (!link) continue;
214
215         inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
216         link->current_pts = AV_NOPTS_VALUE;
217
218         switch (link->init_state) {
219         case AVLINK_INIT:
220             continue;
221         case AVLINK_STARTINIT:
222             av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
223             return 0;
224         case AVLINK_UNINIT:
225             link->init_state = AVLINK_STARTINIT;
226
227             if ((ret = avfilter_config_links(link->src)) < 0)
228                 return ret;
229
230             if (!(config_link = link->srcpad->config_props)) {
231                 if (link->src->nb_inputs != 1) {
232                     av_log(link->src, AV_LOG_ERROR, "Source filters and filters "
233                                                     "with more than one input "
234                                                     "must set config_props() "
235                                                     "callbacks on all outputs\n");
236                     return AVERROR(EINVAL);
237                 }
238             } else if ((ret = config_link(link)) < 0) {
239                 av_log(link->src, AV_LOG_ERROR,
240                        "Failed to configure output pad on %s\n",
241                        link->src->name);
242                 return ret;
243             }
244
245             switch (link->type) {
246             case AVMEDIA_TYPE_VIDEO:
247                 if (!link->time_base.num && !link->time_base.den)
248                     link->time_base = inlink ? inlink->time_base : AV_TIME_BASE_Q;
249
250                 if (!link->sample_aspect_ratio.num && !link->sample_aspect_ratio.den)
251                     link->sample_aspect_ratio = inlink ?
252                         inlink->sample_aspect_ratio : (AVRational){1,1};
253
254                 if (inlink && !link->frame_rate.num && !link->frame_rate.den)
255                     link->frame_rate = inlink->frame_rate;
256
257                 if (inlink) {
258                     if (!link->w)
259                         link->w = inlink->w;
260                     if (!link->h)
261                         link->h = inlink->h;
262                 } else if (!link->w || !link->h) {
263                     av_log(link->src, AV_LOG_ERROR,
264                            "Video source filters must set their output link's "
265                            "width and height\n");
266                     return AVERROR(EINVAL);
267                 }
268                 break;
269
270             case AVMEDIA_TYPE_AUDIO:
271                 if (inlink) {
272                     if (!link->time_base.num && !link->time_base.den)
273                         link->time_base = inlink->time_base;
274                 }
275
276                 if (!link->time_base.num && !link->time_base.den)
277                     link->time_base = (AVRational) {1, link->sample_rate};
278             }
279
280             if ((config_link = link->dstpad->config_props))
281                 if ((ret = config_link(link)) < 0) {
282                     av_log(link->src, AV_LOG_ERROR,
283                            "Failed to configure input pad on %s\n",
284                            link->dst->name);
285                     return ret;
286                 }
287
288             link->init_state = AVLINK_INIT;
289         }
290     }
291
292     return 0;
293 }
294
295 void ff_tlog_link(void *ctx, AVFilterLink *link, int end)
296 {
297     if (link->type == AVMEDIA_TYPE_VIDEO) {
298         ff_tlog(ctx,
299                 "link[%p s:%dx%d fmt:%s %s->%s]%s",
300                 link, link->w, link->h,
301                 av_get_pix_fmt_name(link->format),
302                 link->src ? link->src->filter->name : "",
303                 link->dst ? link->dst->filter->name : "",
304                 end ? "\n" : "");
305     } else {
306         char buf[128];
307         av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);
308
309         ff_tlog(ctx,
310                 "link[%p r:%d cl:%s fmt:%s %s->%s]%s",
311                 link, (int)link->sample_rate, buf,
312                 av_get_sample_fmt_name(link->format),
313                 link->src ? link->src->filter->name : "",
314                 link->dst ? link->dst->filter->name : "",
315                 end ? "\n" : "");
316     }
317 }
318
319 int ff_request_frame(AVFilterLink *link)
320 {
321     int ret = -1;
322     FF_TPRINTF_START(NULL, request_frame); ff_tlog_link(NULL, link, 1);
323
324     if (link->closed)
325         return AVERROR_EOF;
326     av_assert0(!link->frame_requested);
327     link->frame_requested = 1;
328     while (link->frame_requested) {
329         if (link->srcpad->request_frame)
330             ret = link->srcpad->request_frame(link);
331         else if (link->src->inputs[0])
332             ret = ff_request_frame(link->src->inputs[0]);
333         if (ret == AVERROR_EOF && link->partial_buf) {
334             AVFrame *pbuf = link->partial_buf;
335             link->partial_buf = NULL;
336             ret = ff_filter_frame_framed(link, pbuf);
337         }
338         if (ret < 0) {
339             link->frame_requested = 0;
340             if (ret == AVERROR_EOF)
341                 link->closed = 1;
342         } else {
343             av_assert0(!link->frame_requested ||
344                        link->flags & FF_LINK_FLAG_REQUEST_LOOP);
345         }
346     }
347     return ret;
348 }
349
350 int ff_poll_frame(AVFilterLink *link)
351 {
352     int i, min = INT_MAX;
353
354     if (link->srcpad->poll_frame)
355         return link->srcpad->poll_frame(link);
356
357     for (i = 0; i < link->src->nb_inputs; i++) {
358         int val;
359         if (!link->src->inputs[i])
360             return -1;
361         val = ff_poll_frame(link->src->inputs[i]);
362         min = FFMIN(min, val);
363     }
364
365     return min;
366 }
367
368 void ff_update_link_current_pts(AVFilterLink *link, int64_t pts)
369 {
370     if (pts == AV_NOPTS_VALUE)
371         return;
372     link->current_pts = av_rescale_q(pts, link->time_base, AV_TIME_BASE_Q);
373     /* TODO use duration */
374     if (link->graph && link->age_index >= 0)
375         ff_avfilter_graph_update_heap(link->graph, link);
376 }
377
378 int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags)
379 {
380     if(!strcmp(cmd, "ping")){
381         av_strlcatf(res, res_len, "pong from:%s %s\n", filter->filter->name, filter->name);
382         return 0;
383     }else if(filter->filter->process_command) {
384         return filter->filter->process_command(filter, cmd, arg, res, res_len, flags);
385     }
386     return AVERROR(ENOSYS);
387 }
388
389 #define MAX_REGISTERED_AVFILTERS_NB 256
390
391 static AVFilter *registered_avfilters[MAX_REGISTERED_AVFILTERS_NB + 1];
392
393 static int next_registered_avfilter_idx = 0;
394
395 AVFilter *avfilter_get_by_name(const char *name)
396 {
397     int i;
398
399     for (i = 0; registered_avfilters[i]; i++)
400         if (!strcmp(registered_avfilters[i]->name, name))
401             return registered_avfilters[i];
402
403     return NULL;
404 }
405
406 int avfilter_register(AVFilter *filter)
407 {
408     int i;
409
410     if (next_registered_avfilter_idx == MAX_REGISTERED_AVFILTERS_NB) {
411         av_log(NULL, AV_LOG_ERROR,
412                "Maximum number of registered filters %d reached, "
413                "impossible to register filter with name '%s'\n",
414                MAX_REGISTERED_AVFILTERS_NB, filter->name);
415         return AVERROR(ENOMEM);
416     }
417
418     for(i=0; filter->inputs && filter->inputs[i].name; i++) {
419         const AVFilterPad *input = &filter->inputs[i];
420         av_assert0(     !input->filter_frame
421                     || (!input->start_frame && !input->end_frame));
422     }
423
424     registered_avfilters[next_registered_avfilter_idx++] = filter;
425     return 0;
426 }
427
428 AVFilter **av_filter_next(AVFilter **filter)
429 {
430     return filter ? ++filter : &registered_avfilters[0];
431 }
432
433 void avfilter_uninit(void)
434 {
435     memset(registered_avfilters, 0, sizeof(registered_avfilters));
436     next_registered_avfilter_idx = 0;
437 }
438
439 static int pad_count(const AVFilterPad *pads)
440 {
441     int count;
442
443     if (!pads)
444         return 0;
445
446     for(count = 0; pads->name; count ++) pads ++;
447     return count;
448 }
449
450 static const char *default_filter_name(void *filter_ctx)
451 {
452     AVFilterContext *ctx = filter_ctx;
453     return ctx->name ? ctx->name : ctx->filter->name;
454 }
455
456 static void *filter_child_next(void *obj, void *prev)
457 {
458     AVFilterContext *ctx = obj;
459     if (!prev && ctx->filter && ctx->filter->priv_class)
460         return ctx->priv;
461     return NULL;
462 }
463
464 static const AVClass *filter_child_class_next(const AVClass *prev)
465 {
466     AVFilter **filter_ptr = NULL;
467
468     /* find the filter that corresponds to prev */
469     while (prev && *(filter_ptr = av_filter_next(filter_ptr)))
470         if ((*filter_ptr)->priv_class == prev)
471             break;
472
473     /* could not find filter corresponding to prev */
474     if (prev && !(*filter_ptr))
475         return NULL;
476
477     /* find next filter with specific options */
478     while (*(filter_ptr = av_filter_next(filter_ptr)))
479         if ((*filter_ptr)->priv_class)
480             return (*filter_ptr)->priv_class;
481     return NULL;
482 }
483
484 static const AVClass avfilter_class = {
485     .class_name = "AVFilter",
486     .item_name  = default_filter_name,
487     .version    = LIBAVUTIL_VERSION_INT,
488     .category   = AV_CLASS_CATEGORY_FILTER,
489     .child_next = filter_child_next,
490     .child_class_next = filter_child_class_next,
491 };
492
493 const AVClass *avfilter_get_class(void)
494 {
495     return &avfilter_class;
496 }
497
498 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
499 {
500     AVFilterContext *ret;
501     *filter_ctx = NULL;
502
503     if (!filter)
504         return AVERROR(EINVAL);
505
506     ret = av_mallocz(sizeof(AVFilterContext));
507     if (!ret)
508         return AVERROR(ENOMEM);
509
510     ret->av_class = &avfilter_class;
511     ret->filter   = filter;
512     ret->name     = inst_name ? av_strdup(inst_name) : NULL;
513     if (filter->priv_size) {
514         ret->priv     = av_mallocz(filter->priv_size);
515         if (!ret->priv)
516             goto err;
517     }
518
519     if (filter->priv_class) {
520         *(const AVClass**)ret->priv = filter->priv_class;
521         av_opt_set_defaults(ret->priv);
522     }
523
524     ret->nb_inputs = pad_count(filter->inputs);
525     if (ret->nb_inputs ) {
526         ret->input_pads   = av_malloc(sizeof(AVFilterPad) * ret->nb_inputs);
527         if (!ret->input_pads)
528             goto err;
529         memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->nb_inputs);
530         ret->inputs       = av_mallocz(sizeof(AVFilterLink*) * ret->nb_inputs);
531         if (!ret->inputs)
532             goto err;
533     }
534
535     ret->nb_outputs = pad_count(filter->outputs);
536     if (ret->nb_outputs) {
537         ret->output_pads  = av_malloc(sizeof(AVFilterPad) * ret->nb_outputs);
538         if (!ret->output_pads)
539             goto err;
540         memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->nb_outputs);
541         ret->outputs      = av_mallocz(sizeof(AVFilterLink*) * ret->nb_outputs);
542         if (!ret->outputs)
543             goto err;
544     }
545 #if FF_API_FOO_COUNT
546     ret->output_count = ret->nb_outputs;
547     ret->input_count  = ret->nb_inputs;
548 #endif
549
550     *filter_ctx = ret;
551     return 0;
552
553 err:
554     av_freep(&ret->inputs);
555     av_freep(&ret->input_pads);
556     ret->nb_inputs = 0;
557     av_freep(&ret->outputs);
558     av_freep(&ret->output_pads);
559     ret->nb_outputs = 0;
560     av_freep(&ret->priv);
561     av_free(ret);
562     return AVERROR(ENOMEM);
563 }
564
565 void avfilter_free(AVFilterContext *filter)
566 {
567     int i;
568     AVFilterLink *link;
569
570     if (!filter)
571         return;
572
573     if (filter->filter->uninit)
574         filter->filter->uninit(filter);
575
576     for (i = 0; i < filter->nb_inputs; i++) {
577         if ((link = filter->inputs[i])) {
578             if (link->src)
579                 link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
580             ff_formats_unref(&link->in_formats);
581             ff_formats_unref(&link->out_formats);
582             ff_formats_unref(&link->in_samplerates);
583             ff_formats_unref(&link->out_samplerates);
584             ff_channel_layouts_unref(&link->in_channel_layouts);
585             ff_channel_layouts_unref(&link->out_channel_layouts);
586         }
587         avfilter_link_free(&link);
588     }
589     for (i = 0; i < filter->nb_outputs; i++) {
590         if ((link = filter->outputs[i])) {
591             if (link->dst)
592                 link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
593             ff_formats_unref(&link->in_formats);
594             ff_formats_unref(&link->out_formats);
595             ff_formats_unref(&link->in_samplerates);
596             ff_formats_unref(&link->out_samplerates);
597             ff_channel_layouts_unref(&link->in_channel_layouts);
598             ff_channel_layouts_unref(&link->out_channel_layouts);
599         }
600         avfilter_link_free(&link);
601     }
602
603     if (filter->filter->priv_class || filter->filter->shorthand)
604         av_opt_free(filter->priv);
605
606     av_freep(&filter->name);
607     av_freep(&filter->input_pads);
608     av_freep(&filter->output_pads);
609     av_freep(&filter->inputs);
610     av_freep(&filter->outputs);
611     av_freep(&filter->priv);
612     while(filter->command_queue){
613         ff_command_queue_pop(filter);
614     }
615     av_free(filter);
616 }
617
618 /* process a list of value1:value2:..., each value corresponding
619  * to subsequent AVOption, in the order they are declared */
620 static int process_unnamed_options(AVFilterContext *ctx, AVDictionary **options,
621                                    const char *args)
622 {
623     const AVOption *o = NULL;
624     const char *p = args;
625     char *val;
626
627     while (*p) {
628         o = av_opt_next(ctx->priv, o);
629         if (!o) {
630             av_log(ctx, AV_LOG_ERROR, "More options provided than "
631                    "this filter supports.\n");
632             return AVERROR(EINVAL);
633         }
634         if (o->type == AV_OPT_TYPE_CONST)
635             continue;
636
637         val = av_get_token(&p, ":");
638         if (!val)
639             return AVERROR(ENOMEM);
640
641         av_dict_set(options, o->name, val, 0);
642
643         av_freep(&val);
644         if (*p)
645             p++;
646     }
647
648     return 0;
649 }
650
651 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
652 {
653     AVDictionary *options = NULL;
654     AVDictionaryEntry *e;
655     int ret=0;
656     int anton_options =
657         !strcmp(filter->filter->name,  "aformat") ||
658         !strcmp(filter->filter->name,   "format") ||
659         !strcmp(filter->filter->name, "noformat") ||
660         !strcmp(filter->filter->name, "resample")
661         ;
662
663     if (filter->filter->shorthand) {
664         av_assert0(filter->priv);
665         av_assert0(filter->filter->priv_class);
666         *(const AVClass **)filter->priv = filter->filter->priv_class;
667         av_opt_set_defaults(filter->priv);
668         ret = av_opt_set_from_string(filter->priv, args,
669                                      filter->filter->shorthand, "=", ":");
670         if (ret < 0)
671             return ret;
672         args = NULL;
673     }
674
675     if (anton_options && args && *args && filter->filter->priv_class) {
676         if (strchr(args, '=')) {
677             /* assume a list of key1=value1:key2=value2:... */
678             ret = av_dict_parse_string(&options, args, "=", ":", 0);
679             if (ret < 0)
680                 goto fail;
681 #if FF_API_OLD_FILTER_OPTS
682         } else if (!strcmp(filter->filter->name, "format") ||
683                    !strcmp(filter->filter->name, "noformat")) {
684             /* a hack for compatibility with the old syntax
685              * replace colons with |s */
686             char *copy = av_strdup(args);
687             char *p    = copy;
688
689             if (!copy) {
690                 ret = AVERROR(ENOMEM);
691                 goto fail;
692             }
693
694             if (strchr(copy, ':')) {
695                 av_log(filter, AV_LOG_WARNING, "This syntax is deprecated. Use "
696                        "'|' to separate the list items.\n");
697             }
698
699             while ((p = strchr(p, ':')))
700                 *p++ = '|';
701
702             ret = process_unnamed_options(filter, &options, copy);
703             av_freep(&copy);
704
705             if (ret < 0)
706                 goto fail;
707 #endif
708         } else {
709             ret = process_unnamed_options(filter, &options, args);
710             if (ret < 0)
711                 goto fail;
712         }
713     }
714
715     if (anton_options && filter->filter->priv_class) {
716         ret = av_opt_set_dict(filter->priv, &options);
717         if (ret < 0) {
718             av_log(filter, AV_LOG_ERROR, "Error applying options to the filter.\n");
719             goto fail;
720         }
721     }
722
723     if (filter->filter->init_opaque)
724         ret = filter->filter->init_opaque(filter, args, opaque);
725     else if (filter->filter->init)
726         ret = filter->filter->init(filter, args);
727     else if (filter->filter->init_dict)
728         ret = filter->filter->init_dict(filter, &options);
729     if (ret < 0)
730         goto fail;
731
732     if ((e = av_dict_get(options, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
733         av_log(filter, AV_LOG_ERROR, "No such option: %s.\n", e->key);
734         ret = AVERROR_OPTION_NOT_FOUND;
735         goto fail;
736     }
737
738 fail:
739     av_dict_free(&options);
740
741     return ret;
742 }
743
744 const char *avfilter_pad_get_name(AVFilterPad *pads, int pad_idx)
745 {
746     return pads[pad_idx].name;
747 }
748
749 enum AVMediaType avfilter_pad_get_type(AVFilterPad *pads, int pad_idx)
750 {
751     return pads[pad_idx].type;
752 }
753
754 static int default_filter_frame(AVFilterLink *link, AVFrame *frame)
755 {
756     return ff_filter_frame(link->dst->outputs[0], frame);
757 }
758
759 static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
760 {
761     int (*filter_frame)(AVFilterLink *, AVFrame *);
762     AVFilterPad *dst = link->dstpad;
763     AVFrame *out;
764     int ret;
765     AVFilterCommand *cmd= link->dst->command_queue;
766     int64_t pts;
767
768     if (link->closed) {
769         av_frame_free(&frame);
770         return AVERROR_EOF;
771     }
772
773     if (!(filter_frame = dst->filter_frame))
774         filter_frame = default_filter_frame;
775
776     /* copy the frame if needed */
777     if (dst->needs_writable && !av_frame_is_writable(frame)) {
778         av_log(link->dst, AV_LOG_DEBUG, "Copying data in avfilter.\n");
779
780         /* Maybe use ff_copy_buffer_ref instead? */
781         switch (link->type) {
782         case AVMEDIA_TYPE_VIDEO:
783             out = ff_get_video_buffer(link, link->w, link->h);
784             break;
785         case AVMEDIA_TYPE_AUDIO:
786             out = ff_get_audio_buffer(link, frame->nb_samples);
787             break;
788         default: return AVERROR(EINVAL);
789         }
790         if (!out) {
791             av_frame_free(&frame);
792             return AVERROR(ENOMEM);
793         }
794         av_frame_copy_props(out, frame);
795
796         switch (link->type) {
797         case AVMEDIA_TYPE_VIDEO:
798             av_image_copy(out->data, out->linesize, (const uint8_t **)frame->data, frame->linesize,
799                           frame->format, frame->width, frame->height);
800             break;
801         case AVMEDIA_TYPE_AUDIO:
802             av_samples_copy(out->extended_data, frame->extended_data,
803                             0, 0, frame->nb_samples,
804                             av_get_channel_layout_nb_channels(frame->channel_layout),
805                             frame->format);
806             break;
807         default: return AVERROR(EINVAL);
808         }
809
810         av_frame_free(&frame);
811     } else
812         out = frame;
813
814     while(cmd && cmd->time <= out->pts * av_q2d(link->time_base)){
815         av_log(link->dst, AV_LOG_DEBUG,
816                "Processing command time:%f command:%s arg:%s\n",
817                cmd->time, cmd->command, cmd->arg);
818         avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags);
819         ff_command_queue_pop(link->dst);
820         cmd= link->dst->command_queue;
821     }
822
823     pts = out->pts;
824     ret = filter_frame(link, out);
825     link->frame_requested = 0;
826     ff_update_link_current_pts(link, pts);
827     return ret;
828 }
829
830 static int ff_filter_frame_needs_framing(AVFilterLink *link, AVFrame *frame)
831 {
832     int insamples = frame->nb_samples, inpos = 0, nb_samples;
833     AVFrame *pbuf = link->partial_buf;
834     int nb_channels = av_frame_get_channels(frame);
835     int ret = 0;
836
837     link->flags |= FF_LINK_FLAG_REQUEST_LOOP;
838     /* Handle framing (min_samples, max_samples) */
839     while (insamples) {
840         if (!pbuf) {
841             AVRational samples_tb = { 1, link->sample_rate };
842             pbuf = ff_get_audio_buffer(link, link->partial_buf_size);
843             if (!pbuf) {
844                 av_log(link->dst, AV_LOG_WARNING,
845                        "Samples dropped due to memory allocation failure.\n");
846                 return 0;
847             }
848             av_frame_copy_props(pbuf, frame);
849             pbuf->pts = frame->pts +
850                         av_rescale_q(inpos, samples_tb, link->time_base);
851             pbuf->nb_samples = 0;
852         }
853         nb_samples = FFMIN(insamples,
854                            link->partial_buf_size - pbuf->nb_samples);
855         av_samples_copy(pbuf->extended_data, frame->extended_data,
856                         pbuf->nb_samples, inpos,
857                         nb_samples, nb_channels, link->format);
858         inpos                   += nb_samples;
859         insamples               -= nb_samples;
860         pbuf->nb_samples += nb_samples;
861         if (pbuf->nb_samples >= link->min_samples) {
862             ret = ff_filter_frame_framed(link, pbuf);
863             pbuf = NULL;
864         }
865     }
866     av_frame_free(&frame);
867     link->partial_buf = pbuf;
868     return ret;
869 }
870
871 int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
872 {
873     FF_TPRINTF_START(NULL, filter_frame); ff_tlog_link(NULL, link, 1); ff_tlog(NULL, " "); ff_tlog_ref(NULL, frame, 1);
874
875     /* Consistency checks */
876     if (link->type == AVMEDIA_TYPE_VIDEO) {
877         if (strcmp(link->dst->filter->name, "scale")) {
878             av_assert1(frame->format                 == link->format);
879             av_assert1(frame->width               == link->w);
880             av_assert1(frame->height               == link->h);
881         }
882     } else {
883         av_assert1(frame->format                == link->format);
884         av_assert1(av_frame_get_channels(frame) == link->channels);
885         av_assert1(frame->channel_layout        == link->channel_layout);
886         av_assert1(frame->sample_rate           == link->sample_rate);
887     }
888
889     /* Go directly to actual filtering if possible */
890     if (link->type == AVMEDIA_TYPE_AUDIO &&
891         link->min_samples &&
892         (link->partial_buf ||
893          frame->nb_samples < link->min_samples ||
894          frame->nb_samples > link->max_samples)) {
895         return ff_filter_frame_needs_framing(link, frame);
896     } else {
897         return ff_filter_frame_framed(link, frame);
898     }
899 }