]> git.sesse.net Git - ffmpeg/blob - libavfilter/sink_buffer.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavfilter / sink_buffer.c
1 /*
2  * Copyright (c) 2011 Stefano Sabatini
3  *
4  * This file is part of FFmpeg.
5  *
6  * FFmpeg is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * FFmpeg is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with FFmpeg; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19  */
20
21 /**
22  * @file
23  * buffer video sink
24  */
25
26 #include "libavutil/avassert.h"
27 #include "libavutil/fifo.h"
28 #include "avfilter.h"
29 #include "buffersink.h"
30 #include "internal.h"
31
32 AVBufferSinkParams *av_buffersink_params_alloc(void)
33 {
34     static const int pixel_fmts[] = { -1 };
35     AVBufferSinkParams *params = av_malloc(sizeof(AVBufferSinkParams));
36     if (!params)
37         return NULL;
38
39     params->pixel_fmts = pixel_fmts;
40     return params;
41 }
42
43 AVABufferSinkParams *av_abuffersink_params_alloc(void)
44 {
45     static const int sample_fmts[] = { -1 };
46     static const int64_t channel_layouts[] = { -1 };
47     AVABufferSinkParams *params = av_malloc(sizeof(AVABufferSinkParams));
48
49     if (!params)
50         return NULL;
51
52     params->sample_fmts = sample_fmts;
53     params->channel_layouts = channel_layouts;
54     return params;
55 }
56
57 typedef struct {
58     AVFifoBuffer *fifo;                      ///< FIFO buffer of video frame references
59
60     /* only used for video */
61     enum PixelFormat *pixel_fmts;           ///< list of accepted pixel formats, must be terminated with -1
62
63     /* only used for audio */
64     enum AVSampleFormat *sample_fmts;       ///< list of accepted sample formats, terminated by AV_SAMPLE_FMT_NONE
65     int64_t *channel_layouts;               ///< list of accepted channel layouts, terminated by -1
66 } BufferSinkContext;
67
68 #define FIFO_INIT_SIZE 8
69
70 static av_cold int common_init(AVFilterContext *ctx)
71 {
72     BufferSinkContext *buf = ctx->priv;
73
74     buf->fifo = av_fifo_alloc(FIFO_INIT_SIZE*sizeof(AVFilterBufferRef *));
75     if (!buf->fifo) {
76         av_log(ctx, AV_LOG_ERROR, "Failed to allocate fifo\n");
77         return AVERROR(ENOMEM);
78     }
79     return 0;
80 }
81
82 static av_cold void common_uninit(AVFilterContext *ctx)
83 {
84     BufferSinkContext *buf = ctx->priv;
85     AVFilterBufferRef *picref;
86
87     if (buf->fifo) {
88         while (av_fifo_size(buf->fifo) >= sizeof(AVFilterBufferRef *)) {
89             av_fifo_generic_read(buf->fifo, &picref, sizeof(picref), NULL);
90             avfilter_unref_buffer(picref);
91         }
92         av_fifo_free(buf->fifo);
93         buf->fifo = NULL;
94     }
95 }
96
97 static void end_frame(AVFilterLink *inlink)
98 {
99     AVFilterContext *ctx = inlink->dst;
100     BufferSinkContext *buf = inlink->dst->priv;
101
102     av_assert1(inlink->cur_buf);
103     if (av_fifo_space(buf->fifo) < sizeof(AVFilterBufferRef *)) {
104         /* realloc fifo size */
105         if (av_fifo_realloc2(buf->fifo, av_fifo_size(buf->fifo) * 2) < 0) {
106             av_log(ctx, AV_LOG_ERROR,
107                    "Cannot buffer more frames. Consume some available frames "
108                    "before adding new ones.\n");
109             return;
110         }
111     }
112
113     /* cache frame */
114     av_fifo_generic_write(buf->fifo,
115                           &inlink->cur_buf, sizeof(AVFilterBufferRef *), NULL);
116 }
117
118 int av_buffersink_get_buffer_ref(AVFilterContext *ctx,
119                                   AVFilterBufferRef **bufref, int flags)
120 {
121     BufferSinkContext *buf = ctx->priv;
122     AVFilterLink *inlink = ctx->inputs[0];
123     int ret;
124     *bufref = NULL;
125
126     av_assert0(!strcmp(ctx->filter->name, "buffersink") || !strcmp(ctx->filter->name, "abuffersink"));
127
128     /* no picref available, fetch it from the filterchain */
129     if (!av_fifo_size(buf->fifo)) {
130         if (flags & AV_BUFFERSINK_FLAG_NO_REQUEST)
131             return AVERROR(EAGAIN);
132         if ((ret = ff_request_frame(inlink)) < 0)
133             return ret;
134     }
135
136     if (!av_fifo_size(buf->fifo))
137         return AVERROR(EINVAL);
138
139     if (flags & AV_BUFFERSINK_FLAG_PEEK)
140         *bufref = *((AVFilterBufferRef **)av_fifo_peek2(buf->fifo, 0));
141     else
142         av_fifo_generic_read(buf->fifo, bufref, sizeof(*bufref), NULL);
143
144     return 0;
145 }
146
147 AVRational av_buffersink_get_frame_rate(AVFilterContext *ctx)
148 {
149     av_assert0(!strcmp(ctx->filter->name, "buffersink"));
150
151     return ctx->inputs[0]->frame_rate;
152 }
153
154 int av_buffersink_poll_frame(AVFilterContext *ctx)
155 {
156     BufferSinkContext *buf = ctx->priv;
157     AVFilterLink *inlink = ctx->inputs[0];
158
159     av_assert0(!strcmp(ctx->filter->name, "buffersink") || !strcmp(ctx->filter->name, "abuffersink"));
160
161     return av_fifo_size(buf->fifo)/sizeof(AVFilterBufferRef *) + ff_poll_frame(inlink);
162 }
163
164 #if CONFIG_BUFFERSINK_FILTER
165
166 static av_cold int vsink_init(AVFilterContext *ctx, const char *args)
167 {
168     BufferSinkContext *buf = ctx->priv;
169     AVBufferSinkParams *params = NULL;
170
171 //     if(args && !strcmp(args, "opaque"))
172 //         params = (AVBufferSinkParams *)(args+7);
173
174     if (!params) {
175         av_log(ctx, AV_LOG_WARNING,
176                "No opaque field provided\n");
177         buf->pixel_fmts = NULL;
178     } else {
179         const int *pixel_fmts = params->pixel_fmts;
180
181         buf->pixel_fmts = ff_copy_int_list(pixel_fmts);
182         if (!buf->pixel_fmts)
183             return AVERROR(ENOMEM);
184     }
185
186     return common_init(ctx);
187 }
188
189 static av_cold void vsink_uninit(AVFilterContext *ctx)
190 {
191     BufferSinkContext *buf = ctx->priv;
192     av_freep(&buf->pixel_fmts);
193     common_uninit(ctx);
194 }
195
196 static int vsink_query_formats(AVFilterContext *ctx)
197 {
198     BufferSinkContext *buf = ctx->priv;
199
200     if (buf->pixel_fmts)
201         ff_set_common_formats(ctx, ff_make_format_list(buf->pixel_fmts));
202     else
203         ff_default_query_formats(ctx);
204
205     return 0;
206 }
207
208 AVFilter avfilter_vsink_buffersink = {
209     .name      = "buffersink",
210     .description = NULL_IF_CONFIG_SMALL("Buffer video frames, and make them available to the end of the filter graph."),
211     .priv_size = sizeof(BufferSinkContext),
212     .init      = vsink_init,
213     .uninit    = vsink_uninit,
214
215     .query_formats = vsink_query_formats,
216
217     .inputs    = (const AVFilterPad[]) {{ .name    = "default",
218                                     .type          = AVMEDIA_TYPE_VIDEO,
219                                     .end_frame     = end_frame,
220                                     .min_perms     = AV_PERM_READ, },
221                                   { .name = NULL }},
222     .outputs   = (const AVFilterPad[]) {{ .name = NULL }},
223 };
224
225 #endif /* CONFIG_BUFFERSINK_FILTER */
226
227 #if CONFIG_ABUFFERSINK_FILTER
228
229 static void filter_samples(AVFilterLink *link, AVFilterBufferRef *samplesref)
230 {
231     end_frame(link);
232 }
233
234 static av_cold int asink_init(AVFilterContext *ctx, const char *args)
235 {
236     BufferSinkContext *buf = ctx->priv;
237     AVABufferSinkParams *params = NULL;
238
239 //     if(args && !strcmp(args, "opaque"))
240 //         params = (AVABufferSinkParams *)(args+7);
241
242     if (params && params->sample_fmts) {
243         buf->sample_fmts     = ff_copy_int_list  (params->sample_fmts);
244         if (!buf->sample_fmts)
245             goto fail_enomem;
246     }
247     if (params && params->channel_layouts) {
248         buf->channel_layouts = ff_copy_int64_list(params->channel_layouts);
249         if (!buf->channel_layouts)
250             goto fail_enomem;
251     }
252     if (!common_init(ctx))
253         return 0;
254
255 fail_enomem:
256     av_freep(&buf->sample_fmts);
257     av_freep(&buf->channel_layouts);
258     return AVERROR(ENOMEM);
259 }
260
261 static av_cold void asink_uninit(AVFilterContext *ctx)
262 {
263     BufferSinkContext *buf = ctx->priv;
264
265     av_freep(&buf->sample_fmts);
266     av_freep(&buf->channel_layouts);
267     common_uninit(ctx);
268 }
269
270 static int asink_query_formats(AVFilterContext *ctx)
271 {
272     BufferSinkContext *buf = ctx->priv;
273     AVFilterFormats *formats = NULL;
274     AVFilterChannelLayouts *layouts = NULL;
275
276     if (buf->sample_fmts) {
277     if (!(formats = ff_make_format_list(buf->sample_fmts)))
278         return AVERROR(ENOMEM);
279     ff_set_common_formats(ctx, formats);
280     }
281
282     if (buf->channel_layouts) {
283     if (!(layouts = avfilter_make_format64_list(buf->channel_layouts)))
284         return AVERROR(ENOMEM);
285     ff_set_common_channel_layouts(ctx, layouts);
286     }
287
288     return 0;
289 }
290
291 AVFilter avfilter_asink_abuffersink = {
292     .name      = "abuffersink",
293     .description = NULL_IF_CONFIG_SMALL("Buffer audio frames, and make them available to the end of the filter graph."),
294     .init      = asink_init,
295     .uninit    = asink_uninit,
296     .priv_size = sizeof(BufferSinkContext),
297     .query_formats = asink_query_formats,
298
299     .inputs    = (const AVFilterPad[]) {{ .name     = "default",
300                                     .type           = AVMEDIA_TYPE_AUDIO,
301                                     .filter_samples = filter_samples,
302                                     .min_perms      = AV_PERM_READ, },
303                                   { .name = NULL }},
304     .outputs   = (const AVFilterPad[]) {{ .name = NULL }},
305 };
306
307 #endif /* CONFIG_ABUFFERSINK_FILTER */