libavfilter/avfilter.c
4dbbcdee
 /*
16790dc3
  * filter layer
3fa77bde
  * Copyright (c) 2007 Bobby Bingham
4dbbcdee
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
22364567
 #include "libavutil/atomic.h"
03b07872
 #include "libavutil/avassert.h"
 #include "libavutil/avstring.h"
a903f8f0
 #include "libavutil/channel_layout.h"
1d9c2dc8
 #include "libavutil/common.h"
fdd93eab
 #include "libavutil/eval.h"
565e4993
 #include "libavutil/imgutils.h"
7950e519
 #include "libavutil/internal.h"
befbcc37
 #include "libavutil/opt.h"
b4b66456
 #include "libavutil/pixdesc.h"
867ae7aa
 #include "libavutil/rational.h"
565e4993
 #include "libavutil/samplefmt.h"
472fb3bb
 
565e4993
 #include "audio.h"
4dbbcdee
 #include "avfilter.h"
ff1f51a8
 #include "formats.h"
9f0e31d2
 #include "internal.h"
4dbbcdee
 
a05a44e2
 static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame);
82541d83
 
a05a44e2
 void ff_tlog_ref(void *ctx, AVFrame *ref, int end)
1488c4dc
 {
     av_unused char buf[16];
134815a0
     ff_tlog(ctx,
a05a44e2
             "ref[%p buf:%p data:%p linesize[%d, %d, %d, %d] pts:%"PRId64" pos:%"PRId64,
             ref, ref->buf, ref->data[0],
1488c4dc
             ref->linesize[0], ref->linesize[1], ref->linesize[2], ref->linesize[3],
a05a44e2
             ref->pts, av_frame_get_pkt_pos(ref));
1488c4dc
 
a05a44e2
     if (ref->width) {
134815a0
         ff_tlog(ctx, " a:%d/%d s:%dx%d i:%c iskey:%d type:%c",
a05a44e2
                 ref->sample_aspect_ratio.num, ref->sample_aspect_ratio.den,
                 ref->width, ref->height,
                 !ref->interlaced_frame     ? 'P' :         /* Progressive  */
                 ref->top_field_first ? 'T' : 'B',    /* Top / Bottom */
                 ref->key_frame,
                 av_get_picture_type_char(ref->pict_type));
1488c4dc
     }
a05a44e2
     if (ref->nb_samples) {
134815a0
         ff_tlog(ctx, " cl:%"PRId64"d n:%d r:%d",
a05a44e2
                 ref->channel_layout,
                 ref->nb_samples,
                 ref->sample_rate);
1488c4dc
     }
 
134815a0
     ff_tlog(ctx, "]%s", end ? "\n" : "");
1488c4dc
 }
 
bf5b5d2b
 unsigned avfilter_version(void)
 {
f810ab45
     av_assert0(LIBAVFILTER_VERSION_MICRO >= 100);
540f1c7b
     return LIBAVFILTER_VERSION_INT;
 }
 
41600690
 const char *avfilter_configuration(void)
c1736936
 {
e528cdac
     return FFMPEG_CONFIGURATION;
c1736936
 }
 
41600690
 const char *avfilter_license(void)
c1736936
 {
 #define LICENSE_PREFIX "libavfilter license: "
0cb88628
     return LICENSE_PREFIX FFMPEG_LICENSE + sizeof(LICENSE_PREFIX) - 1;
c1736936
 }
 
1cbf7fb4
 void ff_command_queue_pop(AVFilterContext *filter)
3d8176d2
 {
     AVFilterCommand *c= filter->command_queue;
     av_freep(&c->arg);
     av_freep(&c->command);
     filter->command_queue= c->next;
     av_free(c);
 }
 
211a185c
 int ff_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
fa417fcd
                    AVFilterPad **pads, AVFilterLink ***links,
                    AVFilterPad *newpad)
24618441
 {
211a185c
     AVFilterLink **newlinks;
     AVFilterPad *newpads;
24618441
     unsigned i;
 
     idx = FFMIN(idx, *count);
 
211a185c
     newpads  = av_realloc_array(*pads,  *count + 1, sizeof(AVFilterPad));
     newlinks = av_realloc_array(*links, *count + 1, sizeof(AVFilterLink*));
     if (newpads)
         *pads  = newpads;
     if (newlinks)
         *links = newlinks;
     if (!newpads || !newlinks)
         return AVERROR(ENOMEM);
 
bf5b5d2b
     memmove(*pads  + idx + 1, *pads  + idx, sizeof(AVFilterPad)   * (*count - idx));
     memmove(*links + idx + 1, *links + idx, sizeof(AVFilterLink*) * (*count - idx));
     memcpy(*pads + idx, newpad, sizeof(AVFilterPad));
24618441
     (*links)[idx] = NULL;
 
ca857431
     (*count)++;
bf5b5d2b
     for (i = idx + 1; i < *count; i++)
ab2bfb85
         if ((*links)[i])
             (*(unsigned *)((uint8_t *) (*links)[i] + padidx_off))++;
211a185c
 
     return 0;
24618441
 }
 
4dbbcdee
 int avfilter_link(AVFilterContext *src, unsigned srcpad,
                   AVFilterContext *dst, unsigned dstpad)
 {
     AVFilterLink *link;
 
9baeff95
     if (src->nb_outputs <= srcpad || dst->nb_inputs <= dstpad ||
         src->outputs[srcpad]      || dst->inputs[dstpad])
4dbbcdee
         return -1;
 
891aeeee
     if (src->output_pads[srcpad].type != dst->input_pads[dstpad].type) {
         av_log(src, AV_LOG_ERROR,
bd9939f4
                "Media type mismatch between the '%s' filter output pad %d (%s) and the '%s' filter input pad %d (%s)\n",
                src->name, srcpad, (char *)av_x_if_null(av_get_media_type_string(src->output_pads[srcpad].type), "?"),
                dst->name, dstpad, (char *)av_x_if_null(av_get_media_type_string(dst-> input_pads[dstpad].type), "?"));
891aeeee
         return AVERROR(EINVAL);
     }
 
7e2b15c0
     link = av_mallocz(sizeof(*link));
     if (!link)
         return AVERROR(ENOMEM);
 
     src->outputs[srcpad] = dst->inputs[dstpad] = link;
4dbbcdee
 
1653c11f
     link->src     = src;
     link->dst     = dst;
acc0490f
     link->srcpad  = &src->output_pads[srcpad];
     link->dstpad  = &dst->input_pads[dstpad];
bdab614b
     link->type    = src->output_pads[srcpad].type;
ac627b3d
     av_assert0(AV_PIX_FMT_NONE == -1 && AV_SAMPLE_FMT_NONE == -1);
bdab614b
     link->format  = -1;
01942f1d
 
     return 0;
 }
 
e977ca26
 void avfilter_link_free(AVFilterLink **link)
 {
     if (!*link)
         return;
 
a05a44e2
     av_frame_free(&(*link)->partial_buf);
c2271fa7
 
e977ca26
     av_freep(link);
 }
 
238edd2f
 int avfilter_link_get_channels(AVFilterLink *link)
 {
     return link->channels;
 }
 
beeba916
 void avfilter_link_set_closed(AVFilterLink *link, int closed)
 {
     link->closed = closed;
 }
 
52362e9d
 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
486adc55
                            unsigned filt_srcpad_idx, unsigned filt_dstpad_idx)
52362e9d
 {
db9dfa3c
     int ret;
acc0490f
     unsigned dstpad_idx = link->dstpad - link->dst->input_pads;
 
1a49a169
     av_log(link->dst, AV_LOG_VERBOSE, "auto-inserting filter '%s' "
08f8b51f
            "between the filter '%s' and the filter '%s'\n",
            filt->name, link->src->name, link->dst->name);
52362e9d
 
acc0490f
     link->dst->inputs[dstpad_idx] = NULL;
486adc55
     if ((ret = avfilter_link(filt, filt_dstpad_idx, link->dst, dstpad_idx)) < 0) {
52362e9d
         /* failed to link output filter to new filter */
acc0490f
         link->dst->inputs[dstpad_idx] = link;
db9dfa3c
         return ret;
52362e9d
     }
 
     /* re-hookup the link to the new destination filter we inserted */
bf5b5d2b
     link->dst                     = filt;
     link->dstpad                  = &filt->input_pads[filt_srcpad_idx];
486adc55
     filt->inputs[filt_srcpad_idx] = link;
52362e9d
 
bdab614b
     /* if any information on supported media formats already exists on the
07d0bba5
      * link, we need to preserve that */
ca857431
     if (link->out_formats)
b74a1da4
         ff_formats_changeref(&link->out_formats,
bf5b5d2b
                              &filt->outputs[filt_dstpad_idx]->out_formats);
ff1f51a8
     if (link->out_samplerates)
b74a1da4
         ff_formats_changeref(&link->out_samplerates,
bf5b5d2b
                              &filt->outputs[filt_dstpad_idx]->out_samplerates);
ff1f51a8
     if (link->out_channel_layouts)
         ff_channel_layouts_changeref(&link->out_channel_layouts,
                                      &filt->outputs[filt_dstpad_idx]->out_channel_layouts);
07d0bba5
 
52362e9d
     return 0;
 }
 
69818105
 int avfilter_config_links(AVFilterContext *filter)
01942f1d
 {
     int (*config_link)(AVFilterLink *);
69818105
     unsigned i;
69f73a89
     int ret;
69818105
 
9baeff95
     for (i = 0; i < filter->nb_inputs; i ++) {
e079d22e
         AVFilterLink *link = filter->inputs[i];
eb553096
         AVFilterLink *inlink;
d21cbbff
 
ca857431
         if (!link) continue;
69818105
 
eb553096
         inlink = link->src->nb_inputs ? link->src->inputs[0] : NULL;
2ce79727
         link->current_pts = AV_NOPTS_VALUE;
 
ca857431
         switch (link->init_state) {
69818105
         case AVLINK_INIT:
             continue;
         case AVLINK_STARTINIT:
7a9fd2a0
             av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
             return 0;
69818105
         case AVLINK_UNINIT:
             link->init_state = AVLINK_STARTINIT;
 
69f73a89
             if ((ret = avfilter_config_links(link->src)) < 0)
                 return ret;
4dbbcdee
 
5f68a91b
             if (!(config_link = link->srcpad->config_props)) {
9baeff95
                 if (link->src->nb_inputs != 1) {
5f68a91b
                     av_log(link->src, AV_LOG_ERROR, "Source filters and filters "
                                                     "with more than one input "
                                                     "must set config_props() "
                                                     "callbacks on all outputs\n");
                     return AVERROR(EINVAL);
                 }
65a80ee1
             } else if ((ret = config_link(link)) < 0) {
                 av_log(link->src, AV_LOG_ERROR,
                        "Failed to configure output pad on %s\n",
                        link->src->name);
69f73a89
                 return ret;
65a80ee1
             }
102fb0e3
 
5f68a91b
             switch (link->type) {
             case AVMEDIA_TYPE_VIDEO:
                 if (!link->time_base.num && !link->time_base.den)
553c5e9f
                     link->time_base = inlink ? inlink->time_base : AV_TIME_BASE_Q;
5f68a91b
 
                 if (!link->sample_aspect_ratio.num && !link->sample_aspect_ratio.den)
553c5e9f
                     link->sample_aspect_ratio = inlink ?
                         inlink->sample_aspect_ratio : (AVRational){1,1};
5f68a91b
 
7b42036b
                 if (inlink && !link->frame_rate.num && !link->frame_rate.den)
                     link->frame_rate = inlink->frame_rate;
 
553c5e9f
                 if (inlink) {
5f68a91b
                     if (!link->w)
553c5e9f
                         link->w = inlink->w;
5f68a91b
                     if (!link->h)
553c5e9f
                         link->h = inlink->h;
5f68a91b
                 } else if (!link->w || !link->h) {
                     av_log(link->src, AV_LOG_ERROR,
                            "Video source filters must set their output link's "
                            "width and height\n");
                     return AVERROR(EINVAL);
                 }
                 break;
 
             case AVMEDIA_TYPE_AUDIO:
553c5e9f
                 if (inlink) {
71c644ce
                     if (!link->time_base.num && !link->time_base.den)
553c5e9f
                         link->time_base = inlink->time_base;
5f68a91b
                 }
71c644ce
 
                 if (!link->time_base.num && !link->time_base.den)
                     link->time_base = (AVRational) {1, link->sample_rate};
5f68a91b
             }
70c275f8
 
acc0490f
             if ((config_link = link->dstpad->config_props))
65a80ee1
                 if ((ret = config_link(link)) < 0) {
                     av_log(link->src, AV_LOG_ERROR,
                            "Failed to configure input pad on %s\n",
                            link->dst->name);
69f73a89
                     return ret;
65a80ee1
                 }
102fb0e3
 
69818105
             link->init_state = AVLINK_INIT;
         }
     }
 
4dbbcdee
     return 0;
 }
 
134815a0
 void ff_tlog_link(void *ctx, AVFilterLink *link, int end)
96da1c51
 {
7986e34d
     if (link->type == AVMEDIA_TYPE_VIDEO) {
134815a0
         ff_tlog(ctx,
5764301d
                 "link[%p s:%dx%d fmt:%s %s->%s]%s",
1d5b1885
                 link, link->w, link->h,
59ee9f78
                 av_get_pix_fmt_name(link->format),
1d5b1885
                 link->src ? link->src->filter->name : "",
                 link->dst ? link->dst->filter->name : "",
                 end ? "\n" : "");
7986e34d
     } else {
         char buf[128];
         av_get_channel_layout_string(buf, sizeof(buf), -1, link->channel_layout);
 
134815a0
         ff_tlog(ctx,
5764301d
                 "link[%p r:%d cl:%s fmt:%s %s->%s]%s",
4381bddc
                 link, (int)link->sample_rate, buf,
7986e34d
                 av_get_sample_fmt_name(link->format),
                 link->src ? link->src->filter->name : "",
                 link->dst ? link->dst->filter->name : "",
                 end ? "\n" : "");
     }
96da1c51
 }
 
803391f7
 int ff_request_frame(AVFilterLink *link)
4dbbcdee
 {
0689d5e1
     int ret = -1;
134815a0
     FF_TPRINTF_START(NULL, request_frame); ff_tlog_link(NULL, link, 1);
96da1c51
 
beeba916
     if (link->closed)
         return AVERROR_EOF;
79d8cfac
     av_assert0(!link->frame_requested);
     link->frame_requested = 1;
     while (link->frame_requested) {
69d67fb6
         if (link->srcpad->request_frame)
             ret = link->srcpad->request_frame(link);
         else if (link->src->inputs[0])
             ret = ff_request_frame(link->src->inputs[0]);
         if (ret == AVERROR_EOF && link->partial_buf) {
             AVFrame *pbuf = link->partial_buf;
             link->partial_buf = NULL;
             ret = ff_filter_frame_framed(link, pbuf);
         }
79d8cfac
         if (ret < 0) {
             link->frame_requested = 0;
             if (ret == AVERROR_EOF)
                 link->closed = 1;
         } else {
             av_assert0(!link->frame_requested ||
                        link->flags & FF_LINK_FLAG_REQUEST_LOOP);
         }
     }
0689d5e1
     return ret;
4dbbcdee
 }
 
803391f7
 int ff_poll_frame(AVFilterLink *link)
7b02c484
 {
ca857431
     int i, min = INT_MAX;
7b02c484
 
acc0490f
     if (link->srcpad->poll_frame)
         return link->srcpad->poll_frame(link);
c245ddf2
 
9baeff95
     for (i = 0; i < link->src->nb_inputs; i++) {
9dd08b4e
         int val;
ca857431
         if (!link->src->inputs[i])
c245ddf2
             return -1;
803391f7
         val = ff_poll_frame(link->src->inputs[i]);
9dd08b4e
         min = FFMIN(min, val);
c245ddf2
     }
7b02c484
 
     return min;
 }
 
38853169
 static const char *const var_names[] = {   "t",   "n",   "pos",        NULL };
 enum                                   { VAR_T, VAR_N, VAR_POS, VAR_VARS_NB };
 
 static int set_enable_expr(AVFilterContext *ctx, const char *expr)
 {
     int ret;
     char *expr_dup;
     AVExpr *old = ctx->enable;
 
     if (!(ctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE)) {
         av_log(ctx, AV_LOG_ERROR, "Timeline ('enable' option) not supported "
                "with filter '%s'\n", ctx->filter->name);
         return AVERROR_PATCHWELCOME;
     }
 
     expr_dup = av_strdup(expr);
     if (!expr_dup)
         return AVERROR(ENOMEM);
 
     if (!ctx->var_values) {
         ctx->var_values = av_calloc(VAR_VARS_NB, sizeof(*ctx->var_values));
         if (!ctx->var_values) {
             av_free(expr_dup);
             return AVERROR(ENOMEM);
         }
     }
 
     ret = av_expr_parse((AVExpr**)&ctx->enable, expr_dup, var_names,
                         NULL, NULL, NULL, NULL, 0, ctx->priv);
     if (ret < 0) {
         av_log(ctx->priv, AV_LOG_ERROR,
                "Error when evaluating the expression '%s' for enable\n",
                expr_dup);
         av_free(expr_dup);
         return ret;
     }
 
     av_expr_free(old);
     av_free(ctx->enable_str);
     ctx->enable_str = expr_dup;
     return 0;
 }
 
01590329
 void ff_update_link_current_pts(AVFilterLink *link, int64_t pts)
2ce79727
 {
75d5624c
     if (pts == AV_NOPTS_VALUE)
2ce79727
         return;
d06bfda0
     link->current_pts = av_rescale_q(pts, link->time_base, AV_TIME_BASE_Q);
     /* TODO use duration */
2ce79727
     if (link->graph && link->age_index >= 0)
         ff_avfilter_graph_update_heap(link->graph, link);
 }
 
1e5014c7
 int avfilter_process_command(AVFilterContext *filter, const char *cmd, const char *arg, char *res, int res_len, int flags)
 {
     if(!strcmp(cmd, "ping")){
bb23bf8f
         char local_res[256] = {0};
 
         if (!res) {
             res = local_res;
             res_len = sizeof(local_res);
         }
1e5014c7
         av_strlcatf(res, res_len, "pong from:%s %s\n", filter->filter->name, filter->name);
bb23bf8f
         if (res == local_res)
             av_log(filter, AV_LOG_INFO, "%s", res);
1e5014c7
         return 0;
38853169
     }else if(!strcmp(cmd, "enable")) {
         return set_enable_expr(filter, arg);
1e5014c7
     }else if(filter->filter->process_command) {
         return filter->filter->process_command(filter, cmd, arg, res, res_len, flags);
     }
     return AVERROR(ENOSYS);
 }
 
fa2a34cd
 static AVFilter *first_filter;
c0a33c47
 static AVFilter **last_filter = &first_filter;
3555d2e8
 
5c439b41
 #if !FF_API_NOCONST_GET_NAME
 const
 #endif
05decb00
 AVFilter *avfilter_get_by_name(const char *name)
4dbbcdee
 {
d94c9070
     const AVFilter *f = NULL;
6d8c67a7
 
f160c6a1
     if (!name)
         return NULL;
 
fa2a34cd
     while ((f = avfilter_next(f)))
         if (!strcmp(f->name, name))
d94c9070
             return (AVFilter *)f;
4dbbcdee
 
     return NULL;
 }
 
86a60fa1
 int avfilter_register(AVFilter *filter)
4dbbcdee
 {
c0a33c47
     AVFilter **f = last_filter;
f6dd1455
     int i;
 
1776177b
     /* the filter must select generic or internal exclusively */
     av_assert0((filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE) != AVFILTER_FLAG_SUPPORT_TIMELINE);
 
f6dd1455
     for(i=0; filter->inputs && filter->inputs[i].name; i++) {
         const AVFilterPad *input = &filter->inputs[i];
         av_assert0(     !input->filter_frame
c0c0b196
                     || (!input->start_frame && !input->end_frame));
f6dd1455
     }
 
fa2a34cd
     filter->next = NULL;
835cc0f2
 
133fbfc7
     while(*f || avpriv_atomic_ptr_cas((void * volatile *)f, NULL, filter))
22364567
         f = &(*f)->next;
c0a33c47
     last_filter = &filter->next;
22364567
 
86a60fa1
     return 0;
4dbbcdee
 }
 
fa2a34cd
 const AVFilter *avfilter_next(const AVFilter *prev)
 {
     return prev ? prev->next : first_filter;
 }
 
 #if FF_API_OLD_FILTER_REGISTER
1433c4ab
 AVFilter **av_filter_next(AVFilter **filter)
 {
fa2a34cd
     return filter ? &(*filter)->next : &first_filter;
1433c4ab
 }
 
4dbbcdee
 void avfilter_uninit(void)
 {
 }
fa2a34cd
 #endif
4dbbcdee
 
7e8fe4be
 int avfilter_pad_count(const AVFilterPad *pads)
4dbbcdee
 {
     int count;
 
1fce361d
     if (!pads)
         return 0;
 
bf5b5d2b
     for (count = 0; pads->name; count++)
         pads++;
4dbbcdee
     return count;
 }
 
ee1748ab
 static const char *default_filter_name(void *filter_ctx)
4dbbcdee
 {
4d6a8a2b
     AVFilterContext *ctx = filter_ctx;
     return ctx->name ? ctx->name : ctx->filter->name;
4dbbcdee
 }
 
5c0d8bc4
 static void *filter_child_next(void *obj, void *prev)
 {
     AVFilterContext *ctx = obj;
4d1f31ea
     if (!prev && ctx->filter && ctx->filter->priv_class && ctx->priv)
5c0d8bc4
         return ctx->priv;
     return NULL;
 }
 
 static const AVClass *filter_child_class_next(const AVClass *prev)
 {
e4723a82
     const AVFilter *f = NULL;
5c0d8bc4
 
     /* find the filter that corresponds to prev */
fa2a34cd
     while (prev && (f = avfilter_next(f)))
         if (f->priv_class == prev)
5c0d8bc4
             break;
 
     /* could not find filter corresponding to prev */
835cc0f2
     if (prev && !f)
5c0d8bc4
         return NULL;
 
     /* find next filter with specific options */
fa2a34cd
     while ((f = avfilter_next(f)))
         if (f->priv_class)
             return f->priv_class;
4d1f31ea
 
5c0d8bc4
     return NULL;
 }
 
fdd93eab
 #define OFFSET(x) offsetof(AVFilterContext, x)
 #define FLAGS AV_OPT_FLAG_FILTERING_PARAM
b5a13865
 static const AVOption avfilter_options[] = {
129bb238
     { "thread_type", "Allowed thread types", OFFSET(thread_type), AV_OPT_TYPE_FLAGS,
         { .i64 = AVFILTER_THREAD_SLICE }, 0, INT_MAX, FLAGS, "thread_type" },
         { "slice", NULL, 0, AV_OPT_TYPE_CONST, { .i64 = AVFILTER_THREAD_SLICE }, .unit = "thread_type" },
fdd93eab
     { "enable", "set enable expression", OFFSET(enable_str), AV_OPT_TYPE_STRING, {.str=NULL}, .flags = FLAGS },
129bb238
     { NULL },
fdd93eab
 };
 
b049ad50
 static const AVClass avfilter_class = {
908c045f
     .class_name = "AVFilter",
ad347bf4
     .item_name  = default_filter_name,
908c045f
     .version    = LIBAVUTIL_VERSION_INT,
54101214
     .category   = AV_CLASS_CATEGORY_FILTER,
5c0d8bc4
     .child_next = filter_child_next,
     .child_class_next = filter_child_class_next,
b5a13865
     .option           = avfilter_options,
b049ad50
 };
 
0767bfd1
 static int default_execute(AVFilterContext *ctx, avfilter_action_func *func, void *arg,
129bb238
                            int *ret, int nb_jobs)
 {
     int i;
 
     for (i = 0; i < nb_jobs; i++) {
         int r = func(ctx, arg, i, nb_jobs);
         if (ret)
             ret[i] = r;
     }
     return 0;
 }
 
bc1a985b
 AVFilterContext *ff_filter_alloc(const AVFilter *filter, const char *inst_name)
4dbbcdee
 {
8f618f4c
     AVFilterContext *ret;
 
     if (!filter)
bc1a985b
         return NULL;
8f618f4c
 
689a5f49
     ret = av_mallocz(sizeof(AVFilterContext));
0699dbb8
     if (!ret)
bc1a985b
         return NULL;
4dbbcdee
 
b049ad50
     ret->av_class = &avfilter_class;
4dbbcdee
     ret->filter   = filter;
2350e69c
     ret->name     = inst_name ? av_strdup(inst_name) : NULL;
0699dbb8
     if (filter->priv_size) {
f8af93ab
         ret->priv     = av_mallocz(filter->priv_size);
0699dbb8
         if (!ret->priv)
             goto err;
     }
4dbbcdee
 
129bb238
     av_opt_set_defaults(ret);
b439c992
     if (filter->priv_class) {
         *(const AVClass**)ret->priv = filter->priv_class;
         av_opt_set_defaults(ret->priv);
     }
 
129bb238
     ret->internal = av_mallocz(sizeof(*ret->internal));
     if (!ret->internal)
         goto err;
     ret->internal->execute = default_execute;
 
7e8fe4be
     ret->nb_inputs = avfilter_pad_count(filter->inputs);
9baeff95
     if (ret->nb_inputs ) {
         ret->input_pads   = av_malloc(sizeof(AVFilterPad) * ret->nb_inputs);
0699dbb8
         if (!ret->input_pads)
             goto err;
9baeff95
         memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad) * ret->nb_inputs);
         ret->inputs       = av_mallocz(sizeof(AVFilterLink*) * ret->nb_inputs);
0699dbb8
         if (!ret->inputs)
             goto err;
689a5f49
     }
c5ef7d7b
 
7e8fe4be
     ret->nb_outputs = avfilter_pad_count(filter->outputs);
9baeff95
     if (ret->nb_outputs) {
         ret->output_pads  = av_malloc(sizeof(AVFilterPad) * ret->nb_outputs);
0699dbb8
         if (!ret->output_pads)
             goto err;
9baeff95
         memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad) * ret->nb_outputs);
         ret->outputs      = av_mallocz(sizeof(AVFilterLink*) * ret->nb_outputs);
0699dbb8
         if (!ret->outputs)
             goto err;
689a5f49
     }
9baeff95
 #if FF_API_FOO_COUNT
7950e519
 FF_DISABLE_DEPRECATION_WARNINGS
9baeff95
     ret->output_count = ret->nb_outputs;
     ret->input_count  = ret->nb_inputs;
7950e519
 FF_ENABLE_DEPRECATION_WARNINGS
9baeff95
 #endif
7d0e1392
 
bc1a985b
     return ret;
0699dbb8
 
 err:
     av_freep(&ret->inputs);
     av_freep(&ret->input_pads);
9baeff95
     ret->nb_inputs = 0;
0699dbb8
     av_freep(&ret->outputs);
     av_freep(&ret->output_pads);
9baeff95
     ret->nb_outputs = 0;
0699dbb8
     av_freep(&ret->priv);
129bb238
     av_freep(&ret->internal);
0699dbb8
     av_free(ret);
bc1a985b
     return NULL;
4dbbcdee
 }
 
bc1a985b
 #if FF_API_AVFILTER_OPEN
 int avfilter_open(AVFilterContext **filter_ctx, AVFilter *filter, const char *inst_name)
 {
     *filter_ctx = ff_filter_alloc(filter, inst_name);
     return *filter_ctx ? 0 : AVERROR(ENOMEM);
4dbbcdee
 }
bc1a985b
 #endif
4dbbcdee
 
d79bd604
 static void free_link(AVFilterLink *link)
 {
     if (!link)
         return;
 
     if (link->src)
         link->src->outputs[link->srcpad - link->src->output_pads] = NULL;
     if (link->dst)
         link->dst->inputs[link->dstpad - link->dst->input_pads] = NULL;
 
     ff_formats_unref(&link->in_formats);
     ff_formats_unref(&link->out_formats);
     ff_formats_unref(&link->in_samplerates);
     ff_formats_unref(&link->out_samplerates);
     ff_channel_layouts_unref(&link->in_channel_layouts);
     ff_channel_layouts_unref(&link->out_channel_layouts);
fb8dde37
     avfilter_link_free(&link);
d79bd604
 }
 
24de0edb
 void avfilter_free(AVFilterContext *filter)
4dbbcdee
 {
     int i;
 
c5f9a66f
     if (!filter)
         return;
 
1565cbc6
     if (filter->graph)
         ff_filter_graph_remove_filter(filter->graph, filter);
 
ca857431
     if (filter->filter->uninit)
4dbbcdee
         filter->filter->uninit(filter);
 
9baeff95
     for (i = 0; i < filter->nb_inputs; i++) {
d79bd604
         free_link(filter->inputs[i]);
4dbbcdee
     }
9baeff95
     for (i = 0; i < filter->nb_outputs; i++) {
d79bd604
         free_link(filter->outputs[i]);
4dbbcdee
     }
 
dcea5850
     if (filter->filter->priv_class)
b439c992
         av_opt_free(filter->priv);
 
f4cb4462
     av_freep(&filter->name);
     av_freep(&filter->input_pads);
     av_freep(&filter->output_pads);
     av_freep(&filter->inputs);
     av_freep(&filter->outputs);
     av_freep(&filter->priv);
3d8176d2
     while(filter->command_queue){
1cbf7fb4
         ff_command_queue_pop(filter);
3d8176d2
     }
fdd93eab
     av_opt_free(filter);
     av_expr_free(filter->enable);
     filter->enable = NULL;
     av_freep(&filter->var_values);
129bb238
     av_freep(&filter->internal);
4dbbcdee
     av_free(filter);
 }
 
b89ce54e
 static int process_options(AVFilterContext *ctx, AVDictionary **options,
                            const char *args)
b439c992
 {
     const AVOption *o = NULL;
b89ce54e
     int ret, count = 0;
     char *av_uninit(parsed_key), *av_uninit(value);
     const char *key;
90efdf98
     int offset= -1;
b439c992
 
b89ce54e
     if (!args)
         return 0;
 
     while (*args) {
         const char *shorthand = NULL;
 
b439c992
         o = av_opt_next(ctx->priv, o);
b89ce54e
         if (o) {
             if (o->type == AV_OPT_TYPE_CONST || o->offset == offset)
                 continue;
             offset = o->offset;
             shorthand = o->name;
b439c992
         }
 
b89ce54e
         ret = av_opt_get_key_value(&args, "=", ":",
                                    shorthand ? AV_OPT_FLAG_IMPLICIT_KEY : 0,
                                    &parsed_key, &value);
         if (ret < 0) {
             if (ret == AVERROR(EINVAL))
                 av_log(ctx, AV_LOG_ERROR, "No option name near '%s'\n", args);
             else
                 av_log(ctx, AV_LOG_ERROR, "Unable to parse '%s': %s\n", args,
                        av_err2str(ret));
             return ret;
         }
         if (*args)
             args++;
         if (parsed_key) {
             key = parsed_key;
             while ((o = av_opt_next(ctx->priv, o))); /* discard all remaining shorthand */
         } else {
             key = shorthand;
         }
b439c992
 
b89ce54e
         av_log(ctx, AV_LOG_DEBUG, "Setting '%s' to value '%s'\n", key, value);
fdd93eab
 
         if (av_opt_find(ctx, key, NULL, 0, 0)) {
             ret = av_opt_set(ctx, key, value, 0);
3ed56b3b
             if (ret < 0) {
                 av_free(value);
                 av_free(parsed_key);
fdd93eab
                 return ret;
3ed56b3b
             }
fdd93eab
         } else {
b89ce54e
         av_dict_set(options, key, value, 0);
         if ((ret = av_opt_set(ctx->priv, key, value, 0)) < 0) {
f6bfeef7
             if (!av_opt_find(ctx->priv, key, NULL, 0, AV_OPT_SEARCH_CHILDREN | AV_OPT_SEARCH_FAKE_OBJ)) {
b89ce54e
             if (ret == AVERROR_OPTION_NOT_FOUND)
                 av_log(ctx, AV_LOG_ERROR, "Option '%s' not found\n", key);
             av_free(value);
             av_free(parsed_key);
             return ret;
f6bfeef7
             }
b89ce54e
         }
fdd93eab
         }
b439c992
 
b89ce54e
         av_free(value);
         av_free(parsed_key);
         count++;
b439c992
     }
fdd93eab
 
     if (ctx->enable_str) {
38853169
         ret = set_enable_expr(ctx, ctx->enable_str);
fdd93eab
         if (ret < 0)
             return ret;
     }
b89ce54e
     return count;
b439c992
 }
 
48a5adab
 #if FF_API_AVFILTER_INIT_FILTER
a360f71e
 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
4dbbcdee
 {
48a5adab
     return avfilter_init_str(filter, args);
 }
 #endif
 
1ba95a9c
 int avfilter_init_dict(AVFilterContext *ctx, AVDictionary **options)
 {
     int ret = 0;
 
129bb238
     ret = av_opt_set_dict(ctx, options);
     if (ret < 0) {
         av_log(ctx, AV_LOG_ERROR, "Error applying generic filter options.\n");
         return ret;
     }
 
     if (ctx->filter->flags & AVFILTER_FLAG_SLICE_THREADS &&
         ctx->thread_type & ctx->graph->thread_type & AVFILTER_THREAD_SLICE &&
         ctx->graph->internal->thread_execute) {
         ctx->thread_type       = AVFILTER_THREAD_SLICE;
         ctx->internal->execute = ctx->graph->internal->thread_execute;
     } else {
         ctx->thread_type = 0;
     }
 
1ba95a9c
     if (ctx->filter->priv_class) {
         ret = av_opt_set_dict(ctx->priv, options);
         if (ret < 0) {
             av_log(ctx, AV_LOG_ERROR, "Error applying options to the filter.\n");
             return ret;
         }
     }
 
46de9ba5
     if (ctx->filter->init_opaque)
         ret = ctx->filter->init_opaque(ctx, NULL);
     else if (ctx->filter->init)
1ba95a9c
         ret = ctx->filter->init(ctx);
     else if (ctx->filter->init_dict)
         ret = ctx->filter->init_dict(ctx, options);
 
     return ret;
 }
 
48a5adab
 int avfilter_init_str(AVFilterContext *filter, const char *args)
4dbbcdee
 {
b439c992
     AVDictionary *options = NULL;
     AVDictionaryEntry *e;
bf5b5d2b
     int ret = 0;
4dbbcdee
 
04924bc9
     if (args && *args) {
62549f96
         if (!filter->filter->priv_class) {
             av_log(filter, AV_LOG_ERROR, "This filter does not take any "
                    "options, but options were provided: %s.\n", args);
             return AVERROR(EINVAL);
         }
 
c334c113
 #if FF_API_OLD_FILTER_OPTS
f1e62af0
             if (   !strcmp(filter->filter->name, "format")     ||
5aa1a668
                    !strcmp(filter->filter->name, "noformat")   ||
                    !strcmp(filter->filter->name, "frei0r")     ||
ee0e8d4b
                    !strcmp(filter->filter->name, "frei0r_src") ||
ad9e66a5
                    !strcmp(filter->filter->name, "ocv")        ||
3c821e75
                    !strcmp(filter->filter->name, "pan")        ||
64ce15b9
                    !strcmp(filter->filter->name, "pp")         ||
                    !strcmp(filter->filter->name, "aevalsrc")) {
e67a87ea
             /* a hack for compatibility with the old syntax
              * replace colons with |s */
             char *copy = av_strdup(args);
             char *p    = copy;
5aa1a668
             int nb_leading = 0; // number of leading colons to skip
23a750c9
             int deprecated = 0;
e67a87ea
 
             if (!copy) {
                 ret = AVERROR(ENOMEM);
                 goto fail;
             }
 
ee0e8d4b
             if (!strcmp(filter->filter->name, "frei0r") ||
                 !strcmp(filter->filter->name, "ocv"))
5aa1a668
                 nb_leading = 1;
             else if (!strcmp(filter->filter->name, "frei0r_src"))
                 nb_leading = 3;
 
             while (nb_leading--) {
                 p = strchr(p, ':');
                 if (!p) {
                     p = copy + strlen(copy);
                     break;
                 }
                 p++;
             }
 
23a750c9
             deprecated = strchr(p, ':') != NULL;
e67a87ea
 
64ce15b9
             if (!strcmp(filter->filter->name, "aevalsrc")) {
23a750c9
                 deprecated = 0;
64ce15b9
                 while ((p = strchr(p, ':')) && p[1] != ':') {
                     const char *epos = strchr(p + 1, '=');
                     const char *spos = strchr(p + 1, ':');
                     const int next_token_is_opt = epos && (!spos || epos < spos);
                     if (next_token_is_opt) {
                         p++;
                         break;
                     }
23a750c9
                     /* next token does not contain a '=', assume a channel expression */
                     deprecated = 1;
64ce15b9
                     *p++ = '|';
                 }
23a750c9
                 if (p && *p == ':') { // double sep '::' found
                     deprecated = 1;
64ce15b9
                     memmove(p, p + 1, strlen(p));
23a750c9
                 }
64ce15b9
             } else
e67a87ea
             while ((p = strchr(p, ':')))
                 *p++ = '|';
 
23a750c9
             if (deprecated)
                 av_log(filter, AV_LOG_WARNING, "This syntax is deprecated. Use "
                        "'|' to separate the list items.\n");
 
64ce15b9
             av_log(filter, AV_LOG_DEBUG, "compat: called with args=[%s]\n", copy);
b89ce54e
             ret = process_options(filter, &options, copy);
e67a87ea
             av_freep(&copy);
 
             if (ret < 0)
                 goto fail;
 #endif
b439c992
         } else {
838d8031
 #if CONFIG_MP_FILTER
             if (!strcmp(filter->filter->name, "mp")) {
                 char *escaped;
 
                 if (!strncmp(args, "filter=", 7))
                     args += 7;
                 ret = av_escape(&escaped, args, ":=", AV_ESCAPE_MODE_BACKSLASH, 0);
                 if (ret < 0) {
                     av_log(filter, AV_LOG_ERROR, "Unable to escape MPlayer filters arg '%s'\n", args);
                     goto fail;
                 }
                 ret = process_options(filter, &options, escaped);
                 av_free(escaped);
             } else
 #endif
b89ce54e
             ret = process_options(filter, &options, args);
b439c992
             if (ret < 0)
                 goto fail;
         }
     }
 
1ba95a9c
     ret = avfilter_init_dict(filter, &options);
4fa1f52e
     if (ret < 0)
         goto fail;
b439c992
 
     if ((e = av_dict_get(options, "", NULL, AV_DICT_IGNORE_SUFFIX))) {
         av_log(filter, AV_LOG_ERROR, "No such option: %s.\n", e->key);
         ret = AVERROR_OPTION_NOT_FOUND;
         goto fail;
     }
 
 fail:
     av_dict_free(&options);
 
e079d22e
     return ret;
4dbbcdee
 }
88c3b87b
 
4a37d4b3
 const char *avfilter_pad_get_name(const AVFilterPad *pads, int pad_idx)
84b9fbe0
 {
     return pads[pad_idx].name;
 }
 
4a37d4b3
 enum AVMediaType avfilter_pad_get_type(const AVFilterPad *pads, int pad_idx)
84b9fbe0
 {
     return pads[pad_idx].type;
4dbbcdee
 }
3ed483cd
 
7e350379
 static int default_filter_frame(AVFilterLink *link, AVFrame *frame)
82541d83
 {
     return ff_filter_frame(link->dst->outputs[0], frame);
 }
 
a05a44e2
 static int ff_filter_frame_framed(AVFilterLink *link, AVFrame *frame)
82541d83
 {
7e350379
     int (*filter_frame)(AVFilterLink *, AVFrame *);
fdd93eab
     AVFilterContext *dstctx = link->dst;
82541d83
     AVFilterPad *dst = link->dstpad;
41003da9
     AVFrame *out = NULL;
a05a44e2
     int ret;
82541d83
     AVFilterCommand *cmd= link->dst->command_queue;
     int64_t pts;
 
     if (link->closed) {
a05a44e2
         av_frame_free(&frame);
82541d83
         return AVERROR_EOF;
     }
 
     if (!(filter_frame = dst->filter_frame))
         filter_frame = default_filter_frame;
 
7e350379
     /* copy the frame if needed */
     if (dst->needs_writable && !av_frame_is_writable(frame)) {
         av_log(link->dst, AV_LOG_DEBUG, "Copying data in avfilter.\n");
82541d83
 
         /* Maybe use ff_copy_buffer_ref instead? */
         switch (link->type) {
         case AVMEDIA_TYPE_VIDEO:
7e350379
             out = ff_get_video_buffer(link, link->w, link->h);
82541d83
             break;
         case AVMEDIA_TYPE_AUDIO:
7e350379
             out = ff_get_audio_buffer(link, frame->nb_samples);
82541d83
             break;
abb5e37f
         default:
             ret = AVERROR(EINVAL);
             goto fail;
82541d83
         }
         if (!out) {
abb5e37f
             ret = AVERROR(ENOMEM);
             goto fail;
82541d83
         }
abb5e37f
 
         ret = av_frame_copy_props(out, frame);
         if (ret < 0)
             goto fail;
82541d83
 
         switch (link->type) {
         case AVMEDIA_TYPE_VIDEO:
3c14c82b
             av_image_copy(out->data, out->linesize, (const uint8_t **)frame->data, frame->linesize,
7e350379
                           frame->format, frame->width, frame->height);
82541d83
             break;
         case AVMEDIA_TYPE_AUDIO:
             av_samples_copy(out->extended_data, frame->extended_data,
7e350379
                             0, 0, frame->nb_samples,
                             av_get_channel_layout_nb_channels(frame->channel_layout),
82541d83
                             frame->format);
             break;
abb5e37f
         default:
             ret = AVERROR(EINVAL);
             goto fail;
82541d83
         }
 
7e350379
         av_frame_free(&frame);
82541d83
     } else
         out = frame;
 
ff6b3400
     while(cmd && cmd->time <= out->pts * av_q2d(link->time_base)){
82541d83
         av_log(link->dst, AV_LOG_DEBUG,
                "Processing command time:%f command:%s arg:%s\n",
                cmd->time, cmd->command, cmd->arg);
         avfilter_process_command(link->dst, cmd->command, cmd->arg, 0, 0, cmd->flags);
         ff_command_queue_pop(link->dst);
         cmd= link->dst->command_queue;
     }
 
     pts = out->pts;
fdd93eab
     if (dstctx->enable_str) {
         int64_t pos = av_frame_get_pkt_pos(out);
         dstctx->var_values[VAR_N] = link->frame_count;
         dstctx->var_values[VAR_T] = pts == AV_NOPTS_VALUE ? NAN : pts * av_q2d(link->time_base);
         dstctx->var_values[VAR_POS] = pos == -1 ? NAN : pos;
df9f9cab
 
3dfc5f55
         dstctx->is_disabled = fabs(av_expr_eval(dstctx->enable, dstctx->var_values, NULL)) < 0.5;
1776177b
         if (dstctx->is_disabled &&
             (dstctx->filter->flags & AVFILTER_FLAG_SUPPORT_TIMELINE_GENERIC))
             filter_frame = default_filter_frame;
fdd93eab
     }
82541d83
     ret = filter_frame(link, out);
b8a5c761
     link->frame_count++;
79d8cfac
     link->frame_requested = 0;
82541d83
     ff_update_link_current_pts(link, pts);
     return ret;
abb5e37f
 
 fail:
     av_frame_free(&out);
     av_frame_free(&frame);
     return ret;
82541d83
 }
 
a05a44e2
 static int ff_filter_frame_needs_framing(AVFilterLink *link, AVFrame *frame)
82541d83
 {
a05a44e2
     int insamples = frame->nb_samples, inpos = 0, nb_samples;
     AVFrame *pbuf = link->partial_buf;
f963c778
     int nb_channels = av_frame_get_channels(frame);
82541d83
     int ret = 0;
 
79d8cfac
     link->flags |= FF_LINK_FLAG_REQUEST_LOOP;
82541d83
     /* Handle framing (min_samples, max_samples) */
     while (insamples) {
         if (!pbuf) {
             AVRational samples_tb = { 1, link->sample_rate };
a05a44e2
             pbuf = ff_get_audio_buffer(link, link->partial_buf_size);
82541d83
             if (!pbuf) {
                 av_log(link->dst, AV_LOG_WARNING,
                        "Samples dropped due to memory allocation failure.\n");
                 return 0;
             }
a05a44e2
             av_frame_copy_props(pbuf, frame);
8780f7fb
             pbuf->pts = frame->pts;
             if (pbuf->pts != AV_NOPTS_VALUE)
                 pbuf->pts += av_rescale_q(inpos, samples_tb, link->time_base);
a05a44e2
             pbuf->nb_samples = 0;
82541d83
         }
         nb_samples = FFMIN(insamples,
a05a44e2
                            link->partial_buf_size - pbuf->nb_samples);
82541d83
         av_samples_copy(pbuf->extended_data, frame->extended_data,
a05a44e2
                         pbuf->nb_samples, inpos,
82541d83
                         nb_samples, nb_channels, link->format);
         inpos                   += nb_samples;
         insamples               -= nb_samples;
a05a44e2
         pbuf->nb_samples += nb_samples;
         if (pbuf->nb_samples >= link->min_samples) {
82541d83
             ret = ff_filter_frame_framed(link, pbuf);
             pbuf = NULL;
         }
     }
a05a44e2
     av_frame_free(&frame);
82541d83
     link->partial_buf = pbuf;
     return ret;
 }
 
a05a44e2
 int ff_filter_frame(AVFilterLink *link, AVFrame *frame)
3ed483cd
 {
     FF_TPRINTF_START(NULL, filter_frame); ff_tlog_link(NULL, link, 1); ff_tlog(NULL, " "); ff_tlog_ref(NULL, frame, 1);
 
82541d83
     /* Consistency checks */
     if (link->type == AVMEDIA_TYPE_VIDEO) {
         if (strcmp(link->dst->filter->name, "scale")) {
             av_assert1(frame->format                 == link->format);
a05a44e2
             av_assert1(frame->width               == link->w);
             av_assert1(frame->height               == link->h);
82541d83
         }
     } else {
         av_assert1(frame->format                == link->format);
f963c778
         av_assert1(av_frame_get_channels(frame) == link->channels);
a05a44e2
         av_assert1(frame->channel_layout        == link->channel_layout);
         av_assert1(frame->sample_rate           == link->sample_rate);
82541d83
     }
 
     /* Go directly to actual filtering if possible */
     if (link->type == AVMEDIA_TYPE_AUDIO &&
         link->min_samples &&
         (link->partial_buf ||
a05a44e2
          frame->nb_samples < link->min_samples ||
          frame->nb_samples > link->max_samples)) {
82541d83
         return ff_filter_frame_needs_framing(link, frame);
     } else {
         return ff_filter_frame_framed(link, frame);
3ed483cd
     }
 }
8114c101
 
 const AVClass *avfilter_get_class(void)
 {
     return &avfilter_class;
 }