libavfilter/buffersrc.c
cf13f204
 /*
  * Copyright (c) 2008 Vitor Sessak
  *
1cbf7fb4
  * This file is part of FFmpeg.
cf13f204
  *
1cbf7fb4
  * FFmpeg is free software; you can redistribute it and/or
cf13f204
  * 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.
  *
1cbf7fb4
  * FFmpeg is distributed in the hope that it will be useful,
cf13f204
  * 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
1cbf7fb4
  * License along with FFmpeg; if not, write to the Free Software
cf13f204
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
b5634e45
 /**
  * @file
  * memory buffer source filter
  */
 
0d58bbb2
 #include <float.h>
 
a903f8f0
 #include "libavutil/channel_layout.h"
 #include "libavutil/common.h"
 #include "libavutil/fifo.h"
7e350379
 #include "libavutil/frame.h"
a903f8f0
 #include "libavutil/imgutils.h"
 #include "libavutil/opt.h"
 #include "libavutil/samplefmt.h"
4c66c407
 #include "audio.h"
cf13f204
 #include "avfilter.h"
e1d9dbf2
 #include "buffersrc.h"
4c66c407
 #include "formats.h"
aa1246ea
 #include "internal.h"
803391f7
 #include "video.h"
1cbf7fb4
 #include "avcodec.h"
4c66c407
 
cf13f204
 typedef struct {
4c66c407
     const AVClass    *class;
95587d29
     AVFifoBuffer     *fifo;
4c66c407
     AVRational        time_base;     ///< time_base to set in the output link
9ca44067
     AVRational        frame_rate;    ///< frame_rate to set in the output link
aa1246ea
     unsigned          nb_failed_requests;
05d6cc11
     unsigned          warning_limit;
4c66c407
 
     /* video only */
dcaa4efc
     int               w, h;
716d413c
     enum AVPixelFormat  pix_fmt;
0d58bbb2
     char               *pix_fmt_str;
cf13f204
     AVRational        pixel_aspect;
dcaa4efc
     char              *sws_param;
4c66c407
 
     /* audio only */
     int sample_rate;
     enum AVSampleFormat sample_fmt;
     char               *sample_fmt_str;
ea645e90
     int channels;
4c66c407
     uint64_t channel_layout;
     char    *channel_layout_str;
 
7ae7c414
     int eof;
cf13f204
 } BufferSourceContext;
 
4c66c407
 #define CHECK_VIDEO_PARAM_CHANGE(s, c, width, height, format)\
5d25140f
     if (c->w != width || c->h != height || c->pix_fmt != format) {\
6cbb8a45
         av_log(s, AV_LOG_INFO, "Changing frame properties on the fly is not supported by all filters.\n");\
5d25140f
     }
 
f29c28a8
 #define CHECK_AUDIO_PARAM_CHANGE(s, c, srate, ch_layout, ch_count, format)\
4c66c407
     if (c->sample_fmt != format || c->sample_rate != srate ||\
f29c28a8
         c->channel_layout != ch_layout || c->channels != ch_count) {\
4c66c407
         av_log(s, AV_LOG_ERROR, "Changing frame properties on the fly is not supported.\n");\
         return AVERROR(EINVAL);\
     }
 
b0012de4
 int av_buffersrc_write_frame(AVFilterContext *ctx, const AVFrame *frame)
720c6b78
 {
b0012de4
     return av_buffersrc_add_frame_flags(ctx, (AVFrame *)frame,
                                         AV_BUFFERSRC_FLAG_KEEP_REF);
a05a44e2
 }
 
b0012de4
 int av_buffersrc_add_frame(AVFilterContext *ctx, AVFrame *frame)
720c6b78
 {
b0012de4
     return av_buffersrc_add_frame_flags(ctx, frame, 0);
 }
 
 static int av_buffersrc_add_frame_internal(AVFilterContext *ctx,
                                            AVFrame *frame, int flags);
 
 int av_buffersrc_add_frame_flags(AVFilterContext *ctx, AVFrame *frame, int flags)
 {
     AVFrame *copy = NULL;
7e350379
     int ret = 0;
cf13f204
 
b71db3f3
     if (frame && frame->channel_layout &&
         av_get_channel_layout_nb_channels(frame->channel_layout) != av_frame_get_channels(frame)) {
a05a44e2
         av_log(0, AV_LOG_ERROR, "Layout indicates a different number of channels than actually present\n");
         return AVERROR(EINVAL);
     }
7ae7c414
 
b0012de4
     if (!(flags & AV_BUFFERSRC_FLAG_KEEP_REF) || !frame)
         return av_buffersrc_add_frame_internal(ctx, frame, flags);
 
7e350379
     if (!(copy = av_frame_alloc()))
aa1246ea
         return AVERROR(ENOMEM);
7e350379
     ret = av_frame_ref(copy, frame);
     if (ret >= 0)
b0012de4
         ret = av_buffersrc_add_frame_internal(ctx, copy, flags);
e1d9dbf2
 
7e350379
     av_frame_free(&copy);
     return ret;
e1d9dbf2
 }
 
d8dccf69
 static int attribute_align_arg av_buffersrc_add_frame_internal(AVFilterContext *ctx,
                                                                AVFrame *frame, int flags)
e1d9dbf2
 {
7e350379
     BufferSourceContext *s = ctx->priv;
     AVFrame *copy;
95587d29
     int ret;
e1d9dbf2
 
e3e6aa7a
     s->nb_failed_requests = 0;
 
7bf9e339
     if (!frame) {
7e350379
         s->eof = 1;
7ae7c414
         return 0;
7e350379
     } else if (s->eof)
7ae7c414
         return AVERROR(EINVAL);
 
b0012de4
     if (!(flags & AV_BUFFERSRC_FLAG_NO_CHECK_FORMAT)) {
 
7e350379
     switch (ctx->outputs[0]->type) {
4c66c407
     case AVMEDIA_TYPE_VIDEO:
7e350379
         CHECK_VIDEO_PARAM_CHANGE(ctx, s, frame->width, frame->height,
4c66c407
                                  frame->format);
         break;
     case AVMEDIA_TYPE_AUDIO:
3cd34263
         /* For layouts unknown on input but known on link after negotiation. */
         if (!frame->channel_layout)
             frame->channel_layout = s->channel_layout;
7e350379
         CHECK_AUDIO_PARAM_CHANGE(ctx, s, frame->sample_rate, frame->channel_layout,
f29c28a8
                                  av_frame_get_channels(frame), frame->format);
4c66c407
         break;
     default:
         return AVERROR(EINVAL);
aa1246ea
     }
5d25140f
 
b0012de4
     }
 
7e350379
     if (!av_fifo_space(s->fifo) &&
         (ret = av_fifo_realloc2(s->fifo, av_fifo_size(s->fifo) +
                                          sizeof(copy))) < 0)
95587d29
         return ret;
cf13f204
 
7e350379
     if (!(copy = av_frame_alloc()))
         return AVERROR(ENOMEM);
     av_frame_move_ref(copy, frame);
95587d29
 
7e350379
     if ((ret = av_fifo_generic_write(s->fifo, &copy, sizeof(copy), NULL)) < 0) {
         av_frame_move_ref(frame, copy);
         av_frame_free(&copy);
95587d29
         return ret;
     }
5bbe4142
 
b0012de4
     if ((flags & AV_BUFFERSRC_FLAG_PUSH))
         if ((ret = ctx->output_pads[0].request_frame(ctx->outputs[0])) < 0)
             return ret;
 
cf13f204
     return 0;
 }
 
7e350379
 #if FF_API_AVFILTERBUFFER
 static void compat_free_buffer(void *opaque, uint8_t *data)
aa1246ea
 {
7e350379
     AVFilterBufferRef *buf = opaque;
a5149607
     AV_NOWARN_DEPRECATED(
7e350379
     avfilter_unref_buffer(buf);
a5149607
     )
aa1246ea
 }
 
7e350379
 static void compat_unref_buffer(void *opaque, uint8_t *data)
aa1246ea
 {
7e350379
     AVBufferRef *buf = opaque;
a5149607
     AV_NOWARN_DEPRECATED(
7e350379
     av_buffer_unref(&buf);
a5149607
     )
7e350379
 }
 
a05a44e2
 int av_buffersrc_add_ref(AVFilterContext *ctx, AVFilterBufferRef *buf,
                          int flags)
7e350379
 {
     BufferSourceContext *s = ctx->priv;
     AVFrame *frame = NULL;
     AVBufferRef *dummy_buf = NULL;
     int ret = 0, planes, i;
e1d9dbf2
 
7ae7c414
     if (!buf) {
7e350379
         s->eof = 1;
7ae7c414
         return 0;
7e350379
     } else if (s->eof)
7ae7c414
         return AVERROR(EINVAL);
 
7e350379
     frame = av_frame_alloc();
     if (!frame)
         return AVERROR(ENOMEM);
e1d9dbf2
 
a05a44e2
     dummy_buf = av_buffer_create(NULL, 0, compat_free_buffer, buf,
                                  (buf->perms & AV_PERM_WRITE) ? 0 : AV_BUFFER_FLAG_READONLY);
7e350379
     if (!dummy_buf) {
         ret = AVERROR(ENOMEM);
         goto fail;
4c66c407
     }
5d25140f
 
a5149607
     AV_NOWARN_DEPRECATED(
7e350379
     if ((ret = avfilter_copy_buf_props(frame, buf)) < 0)
         goto fail;
a5149607
     )
cf13f204
 
7e350379
 #define WRAP_PLANE(ref_out, data, data_size)                            \
 do {                                                                    \
     AVBufferRef *dummy_ref = av_buffer_ref(dummy_buf);                  \
     if (!dummy_ref) {                                                   \
         ret = AVERROR(ENOMEM);                                          \
         goto fail;                                                      \
     }                                                                   \
     ref_out = av_buffer_create(data, data_size, compat_unref_buffer,    \
a05a44e2
                                dummy_ref, (buf->perms & AV_PERM_WRITE) ? 0 : AV_BUFFER_FLAG_READONLY);                           \
7e350379
     if (!ref_out) {                                                     \
         av_frame_unref(frame);                                          \
         ret = AVERROR(ENOMEM);                                          \
         goto fail;                                                      \
     }                                                                   \
 } while (0)
 
     if (ctx->outputs[0]->type  == AVMEDIA_TYPE_VIDEO) {
         const AVPixFmtDescriptor *desc = av_pix_fmt_desc_get(frame->format);
 
c977039e
         planes = av_pix_fmt_count_planes(frame->format);
         if (!desc || planes <= 0) {
7e350379
             ret = AVERROR(EINVAL);
             goto fail;
         }
 
         for (i = 0; i < planes; i++) {
8152451b
             int v_shift    = (i == 1 || i == 2) ? desc->log2_chroma_h : 0;
65528080
             int plane_size = (frame->height >> v_shift) * frame->linesize[i];
7e350379
 
             WRAP_PLANE(frame->buf[i], frame->data[i], plane_size);
         }
     } else {
         int planar = av_sample_fmt_is_planar(frame->format);
         int channels = av_get_channel_layout_nb_channels(frame->channel_layout);
 
         planes = planar ? channels : 1;
 
         if (planes > FF_ARRAY_ELEMS(frame->buf)) {
             frame->nb_extended_buf = planes - FF_ARRAY_ELEMS(frame->buf);
             frame->extended_buf = av_mallocz(sizeof(*frame->extended_buf) *
                                              frame->nb_extended_buf);
             if (!frame->extended_buf) {
                 ret = AVERROR(ENOMEM);
                 goto fail;
             }
         }
 
         for (i = 0; i < FFMIN(planes, FF_ARRAY_ELEMS(frame->buf)); i++)
             WRAP_PLANE(frame->buf[i], frame->extended_data[i], frame->linesize[0]);
 
         for (i = 0; i < planes - FF_ARRAY_ELEMS(frame->buf); i++)
             WRAP_PLANE(frame->extended_buf[i],
                        frame->extended_data[i + FF_ARRAY_ELEMS(frame->buf)],
                        frame->linesize[0]);
     }
 
a05a44e2
     ret = av_buffersrc_add_frame_flags(ctx, frame, flags);
7e350379
 
 fail:
     av_buffer_unref(&dummy_buf);
     av_frame_free(&frame);
 
     return ret;
cf13f204
 }
a05a44e2
 
 int av_buffersrc_buffer(AVFilterContext *ctx, AVFilterBufferRef *buf)
 {
     return av_buffersrc_add_ref(ctx, buf, 0);
aa1246ea
 }
7e350379
 #endif
aa1246ea
 
d69a4177
 static av_cold int init_video(AVFilterContext *ctx)
cf13f204
 {
     BufferSourceContext *c = ctx->priv;
dcaa4efc
 
0d58bbb2
     if (c->pix_fmt == AV_PIX_FMT_NONE || !c->w || !c->h || av_q2d(c->time_base) <= 0) {
         av_log(ctx, AV_LOG_ERROR, "Invalid parameters provided.\n");
dcaa4efc
         return AVERROR(EINVAL);
     }
a05a44e2
 
7e350379
     if (!(c->fifo = av_fifo_alloc(sizeof(AVFrame*))))
95587d29
         return AVERROR(ENOMEM);
 
fda968aa
     av_log(ctx, AV_LOG_VERBOSE, "w:%d h:%d pixfmt:%s tb:%d/%d fr:%d/%d sar:%d/%d sws_param:%s\n",
13afee95
            c->w, c->h, av_get_pix_fmt_name(c->pix_fmt),
9ca44067
            c->time_base.num, c->time_base.den, c->frame_rate.num, c->frame_rate.den,
dcaa4efc
            c->pixel_aspect.num, c->pixel_aspect.den, (char *)av_x_if_null(c->sws_param, ""));
05d6cc11
     c->warning_limit = 100;
b8dddebf
     return 0;
cf13f204
 }
 
a05a44e2
 unsigned av_buffersrc_get_nb_failed_requests(AVFilterContext *buffer_src)
 {
     return ((BufferSourceContext *)buffer_src->priv)->nb_failed_requests;
 }
 
0d58bbb2
 #define OFFSET(x) offsetof(BufferSourceContext, x)
 #define A AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_AUDIO_PARAM
 #define V AV_OPT_FLAG_FILTERING_PARAM|AV_OPT_FLAG_VIDEO_PARAM
 
 static const AVOption buffer_options[] = {
     { "width",         NULL,                     OFFSET(w),                AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
     { "video_size",    NULL,                     OFFSET(w),                AV_OPT_TYPE_IMAGE_SIZE,                .flags = V },
16e5e13c
     { "height",        NULL,                     OFFSET(h),                AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
0d58bbb2
     { "pix_fmt",       NULL,                     OFFSET(pix_fmt),          AV_OPT_TYPE_PIXEL_FMT,                 .flags = V },
 #if FF_API_OLD_FILTER_OPTS
     /* those 4 are for compatibility with the old option passing system where each filter
      * did its own parsing */
     { "time_base_num", "deprecated, do not use", OFFSET(time_base.num),    AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
     { "time_base_den", "deprecated, do not use", OFFSET(time_base.den),    AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
     { "sar_num",       "deprecated, do not use", OFFSET(pixel_aspect.num), AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
     { "sar_den",       "deprecated, do not use", OFFSET(pixel_aspect.den), AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, V },
 #endif
     { "sar",           "sample aspect ratio",    OFFSET(pixel_aspect),     AV_OPT_TYPE_RATIONAL, { .dbl = 1 }, 0, DBL_MAX, V },
     { "pixel_aspect",  "sample aspect ratio",    OFFSET(pixel_aspect),     AV_OPT_TYPE_RATIONAL, { .dbl = 1 }, 0, DBL_MAX, V },
     { "time_base",     NULL,                     OFFSET(time_base),        AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
     { "frame_rate",    NULL,                     OFFSET(frame_rate),       AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, DBL_MAX, V },
     { "sws_param",     NULL,                     OFFSET(sws_param),        AV_OPT_TYPE_STRING,                    .flags = V },
     { NULL },
 };
 
 AVFILTER_DEFINE_CLASS(buffer);
 
c17808ce
 static const AVOption abuffer_options[] = {
0d58bbb2
     { "time_base",      NULL, OFFSET(time_base),           AV_OPT_TYPE_RATIONAL, { .dbl = 0 }, 0, INT_MAX, A },
     { "sample_rate",    NULL, OFFSET(sample_rate),         AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, A },
     { "sample_fmt",     NULL, OFFSET(sample_fmt_str),      AV_OPT_TYPE_STRING,             .flags = A },
     { "channel_layout", NULL, OFFSET(channel_layout_str),  AV_OPT_TYPE_STRING,             .flags = A },
c378ba19
     { "channels",       NULL, OFFSET(channels),            AV_OPT_TYPE_INT,      { .i64 = 0 }, 0, INT_MAX, A },
4c66c407
     { NULL },
 };
 
c17808ce
 AVFILTER_DEFINE_CLASS(abuffer);
4c66c407
 
d69a4177
 static av_cold int init_audio(AVFilterContext *ctx)
4c66c407
 {
     BufferSourceContext *s = ctx->priv;
     int ret = 0;
 
     s->sample_fmt = av_get_sample_fmt(s->sample_fmt_str);
     if (s->sample_fmt == AV_SAMPLE_FMT_NONE) {
0d58bbb2
         av_log(ctx, AV_LOG_ERROR, "Invalid sample format %s\n",
4c66c407
                s->sample_fmt_str);
0d58bbb2
         return AVERROR(EINVAL);
4c66c407
     }
 
ea645e90
     if (s->channel_layout_str) {
         int n;
         /* TODO reindent */
4c66c407
     s->channel_layout = av_get_channel_layout(s->channel_layout_str);
     if (!s->channel_layout) {
0d58bbb2
         av_log(ctx, AV_LOG_ERROR, "Invalid channel layout %s.\n",
4c66c407
                s->channel_layout_str);
0d58bbb2
         return AVERROR(EINVAL);
4c66c407
     }
ea645e90
         n = av_get_channel_layout_nb_channels(s->channel_layout);
         if (s->channels) {
             if (n != s->channels) {
                 av_log(ctx, AV_LOG_ERROR,
                        "Mismatching channel count %d and layout '%s' "
                        "(%d channels)\n",
                        s->channels, s->channel_layout_str, n);
0d58bbb2
                 return AVERROR(EINVAL);
ea645e90
             }
         }
         s->channels = n;
     } else if (!s->channels) {
         av_log(ctx, AV_LOG_ERROR, "Neither number of channels nor "
                                   "channel layout specified\n");
0d58bbb2
         return AVERROR(EINVAL);
ea645e90
     }
4c66c407
 
0d58bbb2
     if (!(s->fifo = av_fifo_alloc(sizeof(AVFrame*))))
         return AVERROR(ENOMEM);
4c66c407
 
     if (!s->time_base.num)
         s->time_base = (AVRational){1, s->sample_rate};
 
fda968aa
     av_log(ctx, AV_LOG_VERBOSE,
6be8cfa0
            "tb:%d/%d samplefmt:%s samplerate:%d chlayout:%s\n",
            s->time_base.num, s->time_base.den, s->sample_fmt_str,
4c66c407
            s->sample_rate, s->channel_layout_str);
05d6cc11
     s->warning_limit = 100;
4c66c407
 
     return ret;
 }
 
43fe6a29
 static av_cold void uninit(AVFilterContext *ctx)
 {
     BufferSourceContext *s = ctx->priv;
8b05e13d
     while (s->fifo && av_fifo_size(s->fifo)) {
7e350379
         AVFrame *frame;
         av_fifo_generic_read(s->fifo, &frame, sizeof(frame), NULL);
         av_frame_free(&frame);
95587d29
     }
     av_fifo_free(s->fifo);
     s->fifo = NULL;
43fe6a29
 }
 
cf13f204
 static int query_formats(AVFilterContext *ctx)
 {
     BufferSourceContext *c = ctx->priv;
4c66c407
     AVFilterChannelLayouts *channel_layouts = NULL;
     AVFilterFormats *formats = NULL;
     AVFilterFormats *samplerates = NULL;
 
     switch (ctx->outputs[0]->type) {
     case AVMEDIA_TYPE_VIDEO:
b74a1da4
         ff_add_format(&formats, c->pix_fmt);
         ff_set_common_formats(ctx, formats);
4c66c407
         break;
     case AVMEDIA_TYPE_AUDIO:
b74a1da4
         ff_add_format(&formats,           c->sample_fmt);
         ff_set_common_formats(ctx, formats);
4c66c407
 
b74a1da4
         ff_add_format(&samplerates,       c->sample_rate);
4c66c407
         ff_set_common_samplerates(ctx, samplerates);
 
ea645e90
         ff_add_channel_layout(&channel_layouts,
                               c->channel_layout ? c->channel_layout :
                               FF_COUNT2LAYOUT(c->channels));
4c66c407
         ff_set_common_channel_layouts(ctx, channel_layouts);
         break;
     default:
         return AVERROR(EINVAL);
     }
cf13f204
 
     return 0;
 }
 
 static int config_props(AVFilterLink *link)
 {
     BufferSourceContext *c = link->src->priv;
 
4c66c407
     switch (link->type) {
     case AVMEDIA_TYPE_VIDEO:
         link->w = c->w;
         link->h = c->h;
         link->sample_aspect_ratio = c->pixel_aspect;
         break;
     case AVMEDIA_TYPE_AUDIO:
01649c79
         if (!c->channel_layout)
             c->channel_layout = link->channel_layout;
4c66c407
         break;
     default:
         return AVERROR(EINVAL);
     }
cf13f204
 
4c66c407
     link->time_base = c->time_base;
9ca44067
     link->frame_rate = c->frame_rate;
cf13f204
     return 0;
 }
 
 static int request_frame(AVFilterLink *link)
 {
     BufferSourceContext *c = link->src->priv;
7e350379
     AVFrame *frame;
cf13f204
 
95587d29
     if (!av_fifo_size(c->fifo)) {
7ae7c414
         if (c->eof)
             return AVERROR_EOF;
aa1246ea
         c->nb_failed_requests++;
5cb4f1a1
         return AVERROR(EAGAIN);
cf13f204
     }
7e350379
     av_fifo_generic_read(c->fifo, &frame, sizeof(frame), NULL);
cf13f204
 
bdbdadba
     return ff_filter_frame(link, frame);
cf13f204
 }
 
 static int poll_frame(AVFilterLink *link)
 {
     BufferSourceContext *c = link->src->priv;
7ae7c414
     int size = av_fifo_size(c->fifo);
     if (!size && c->eof)
         return AVERROR_EOF;
7e350379
     return size/sizeof(AVFrame*);
cf13f204
 }
 
568c70e7
 static const AVFilterPad avfilter_vsrc_buffer_outputs[] = {
     {
         .name          = "default",
         .type          = AVMEDIA_TYPE_VIDEO,
         .request_frame = request_frame,
         .poll_frame    = poll_frame,
         .config_props  = config_props,
     },
     { NULL }
 };
 
4055438b
 AVFilter avfilter_vsrc_buffer = {
cf13f204
     .name      = "buffer",
ce1f8536
     .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them accessible to the filterchain."),
cf13f204
     .priv_size = sizeof(BufferSourceContext),
     .query_formats = query_formats,
 
4c66c407
     .init      = init_video,
43fe6a29
     .uninit    = uninit,
cf13f204
 
1fce361d
     .inputs    = NULL,
568c70e7
     .outputs   = avfilter_vsrc_buffer_outputs,
42d621d1
     .priv_class = &buffer_class,
cf13f204
 };
4c66c407
 
568c70e7
 static const AVFilterPad avfilter_asrc_abuffer_outputs[] = {
     {
         .name          = "default",
         .type          = AVMEDIA_TYPE_AUDIO,
         .request_frame = request_frame,
         .poll_frame    = poll_frame,
         .config_props  = config_props,
     },
     { NULL }
cf13f204
 };
4c66c407
 
 AVFilter avfilter_asrc_abuffer = {
     .name          = "abuffer",
     .description   = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them accessible to the filterchain."),
     .priv_size     = sizeof(BufferSourceContext),
     .query_formats = query_formats,
 
     .init      = init_audio,
     .uninit    = uninit,
 
1fce361d
     .inputs    = NULL,
568c70e7
     .outputs   = avfilter_asrc_abuffer_outputs,
42d621d1
     .priv_class = &abuffer_class,
4c66c407
 };