]> git.sesse.net Git - ffmpeg/blob - libavfilter/fifo.c
vf_crop: use the name 's' for the pointer to the private context
[ffmpeg] / libavfilter / fifo.c
1 /*
2  * Copyright (c) 2007 Bobby Bingham
3  *
4  * This file is part of Libav.
5  *
6  * Libav 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  * Libav 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 Libav; 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  * FIFO buffering filter
24  */
25
26 #include "libavutil/avassert.h"
27 #include "libavutil/channel_layout.h"
28 #include "libavutil/common.h"
29 #include "libavutil/mathematics.h"
30 #include "libavutil/samplefmt.h"
31
32 #include "audio.h"
33 #include "avfilter.h"
34 #include "internal.h"
35 #include "video.h"
36
37 typedef struct Buf {
38     AVFrame *frame;
39     struct Buf        *next;
40 } Buf;
41
42 typedef struct {
43     Buf  root;
44     Buf *last;   ///< last buffered frame
45
46     /**
47      * When a specific number of output samples is requested, the partial
48      * buffer is stored here
49      */
50     AVFrame *out;
51     int allocated_samples;      ///< number of samples out was allocated for
52 } FifoContext;
53
54 static av_cold int init(AVFilterContext *ctx)
55 {
56     FifoContext *fifo = ctx->priv;
57     fifo->last = &fifo->root;
58
59     return 0;
60 }
61
62 static av_cold void uninit(AVFilterContext *ctx)
63 {
64     FifoContext *fifo = ctx->priv;
65     Buf *buf, *tmp;
66
67     for (buf = fifo->root.next; buf; buf = tmp) {
68         tmp = buf->next;
69         av_frame_free(&buf->frame);
70         av_free(buf);
71     }
72
73     av_frame_free(&fifo->out);
74 }
75
76 static int add_to_queue(AVFilterLink *inlink, AVFrame *frame)
77 {
78     FifoContext *fifo = inlink->dst->priv;
79
80     fifo->last->next = av_mallocz(sizeof(Buf));
81     if (!fifo->last->next) {
82         av_frame_free(&frame);
83         return AVERROR(ENOMEM);
84     }
85
86     fifo->last = fifo->last->next;
87     fifo->last->frame = frame;
88
89     return 0;
90 }
91
92 static void queue_pop(FifoContext *s)
93 {
94     Buf *tmp = s->root.next->next;
95     if (s->last == s->root.next)
96         s->last = &s->root;
97     av_freep(&s->root.next);
98     s->root.next = tmp;
99 }
100
101 /**
102  * Move data pointers and pts offset samples forward.
103  */
104 static void buffer_offset(AVFilterLink *link, AVFrame *frame,
105                           int offset)
106 {
107     int nb_channels = av_get_channel_layout_nb_channels(link->channel_layout);
108     int planar = av_sample_fmt_is_planar(link->format);
109     int planes = planar ? nb_channels : 1;
110     int block_align = av_get_bytes_per_sample(link->format) * (planar ? 1 : nb_channels);
111     int i;
112
113     av_assert0(frame->nb_samples > offset);
114
115     for (i = 0; i < planes; i++)
116         frame->extended_data[i] += block_align * offset;
117     if (frame->data != frame->extended_data)
118         memcpy(frame->data, frame->extended_data,
119                FFMIN(planes, FF_ARRAY_ELEMS(frame->data)) * sizeof(*frame->data));
120     frame->linesize[0] -= block_align*offset;
121     frame->nb_samples -= offset;
122
123     if (frame->pts != AV_NOPTS_VALUE) {
124         frame->pts += av_rescale_q(offset, (AVRational){1, link->sample_rate},
125                                    link->time_base);
126     }
127 }
128
129 static int calc_ptr_alignment(AVFrame *frame)
130 {
131     int planes = av_sample_fmt_is_planar(frame->format) ?
132                  av_get_channel_layout_nb_channels(frame->channel_layout) : 1;
133     int min_align = 128;
134     int p;
135
136     for (p = 0; p < planes; p++) {
137         int cur_align = 128;
138         while ((intptr_t)frame->extended_data[p] % cur_align)
139             cur_align >>= 1;
140         if (cur_align < min_align)
141             min_align = cur_align;
142     }
143     return min_align;
144 }
145
146 static int return_audio_frame(AVFilterContext *ctx)
147 {
148     AVFilterLink *link = ctx->outputs[0];
149     FifoContext *s = ctx->priv;
150     AVFrame *head = s->root.next->frame;
151     AVFrame *out;
152     int ret;
153
154     if (!s->out &&
155         head->nb_samples >= link->request_samples &&
156         calc_ptr_alignment(head) >= 32) {
157         if (head->nb_samples == link->request_samples) {
158             out = head;
159             queue_pop(s);
160         } else {
161             out = av_frame_clone(head);
162             if (!out)
163                 return AVERROR(ENOMEM);
164
165             out->nb_samples = link->request_samples;
166             buffer_offset(link, head, link->request_samples);
167         }
168     } else {
169         int nb_channels = av_get_channel_layout_nb_channels(link->channel_layout);
170
171         if (!s->out) {
172             s->out = ff_get_audio_buffer(link, link->request_samples);
173             if (!s->out)
174                 return AVERROR(ENOMEM);
175
176             s->out->nb_samples = 0;
177             s->out->pts                   = head->pts;
178             s->allocated_samples          = link->request_samples;
179         } else if (link->request_samples != s->allocated_samples) {
180             av_log(ctx, AV_LOG_ERROR, "request_samples changed before the "
181                    "buffer was returned.\n");
182             return AVERROR(EINVAL);
183         }
184
185         while (s->out->nb_samples < s->allocated_samples) {
186             int len;
187
188             if (!s->root.next) {
189                 ret = ff_request_frame(ctx->inputs[0]);
190                 if (ret == AVERROR_EOF) {
191                     av_samples_set_silence(s->out->extended_data,
192                                            s->out->nb_samples,
193                                            s->allocated_samples -
194                                            s->out->nb_samples,
195                                            nb_channels, link->format);
196                     s->out->nb_samples = s->allocated_samples;
197                     break;
198                 } else if (ret < 0)
199                     return ret;
200             }
201             head = s->root.next->frame;
202
203             len = FFMIN(s->allocated_samples - s->out->nb_samples,
204                         head->nb_samples);
205
206             av_samples_copy(s->out->extended_data, head->extended_data,
207                             s->out->nb_samples, 0, len, nb_channels,
208                             link->format);
209             s->out->nb_samples += len;
210
211             if (len == head->nb_samples) {
212                 av_frame_free(&head);
213                 queue_pop(s);
214             } else {
215                 buffer_offset(link, head, len);
216             }
217         }
218         out = s->out;
219         s->out = NULL;
220     }
221     return ff_filter_frame(link, out);
222 }
223
224 static int request_frame(AVFilterLink *outlink)
225 {
226     FifoContext *fifo = outlink->src->priv;
227     int ret = 0;
228
229     if (!fifo->root.next) {
230         if ((ret = ff_request_frame(outlink->src->inputs[0])) < 0)
231             return ret;
232     }
233
234     if (outlink->request_samples) {
235         return return_audio_frame(outlink->src);
236     } else {
237         ret = ff_filter_frame(outlink, fifo->root.next->frame);
238         queue_pop(fifo);
239     }
240
241     return ret;
242 }
243
244 static const AVFilterPad avfilter_vf_fifo_inputs[] = {
245     {
246         .name             = "default",
247         .type             = AVMEDIA_TYPE_VIDEO,
248         .get_video_buffer = ff_null_get_video_buffer,
249         .filter_frame     = add_to_queue,
250     },
251     { NULL }
252 };
253
254 static const AVFilterPad avfilter_vf_fifo_outputs[] = {
255     {
256         .name          = "default",
257         .type          = AVMEDIA_TYPE_VIDEO,
258         .request_frame = request_frame,
259     },
260     { NULL }
261 };
262
263 AVFilter avfilter_vf_fifo = {
264     .name      = "fifo",
265     .description = NULL_IF_CONFIG_SMALL("Buffer input images and send them when they are requested."),
266
267     .init      = init,
268     .uninit    = uninit,
269
270     .priv_size = sizeof(FifoContext),
271
272     .inputs    = avfilter_vf_fifo_inputs,
273     .outputs   = avfilter_vf_fifo_outputs,
274 };
275
276 static const AVFilterPad avfilter_af_afifo_inputs[] = {
277     {
278         .name             = "default",
279         .type             = AVMEDIA_TYPE_AUDIO,
280         .get_audio_buffer = ff_null_get_audio_buffer,
281         .filter_frame     = add_to_queue,
282     },
283     { NULL }
284 };
285
286 static const AVFilterPad avfilter_af_afifo_outputs[] = {
287     {
288         .name          = "default",
289         .type          = AVMEDIA_TYPE_AUDIO,
290         .request_frame = request_frame,
291     },
292     { NULL }
293 };
294
295 AVFilter avfilter_af_afifo = {
296     .name        = "afifo",
297     .description = NULL_IF_CONFIG_SMALL("Buffer input frames and send them when they are requested."),
298
299     .init      = init,
300     .uninit    = uninit,
301
302     .priv_size = sizeof(FifoContext),
303
304     .inputs    = avfilter_af_afifo_inputs,
305     .outputs   = avfilter_af_afifo_outputs,
306 };