]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavfilter/avfilter.c
Improve error handling
[frescor/ffmpeg.git] / 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 "libavcodec/imgconvert.h"
23 #include "avfilter.h"
24
25 /** list of registered filters */
26 struct FilterList
27 {
28     AVFilter *filter;
29     struct FilterList *next;
30 } *filters = NULL;
31
32 /** helper macros to get the in/out pad on the dst/src filter */
33 #define link_dpad(link)     link->dst-> input_pads[link->dstpad]
34 #define link_spad(link)     link->src->output_pads[link->srcpad]
35
36 AVFilterPicRef *avfilter_ref_pic(AVFilterPicRef *ref, int pmask)
37 {
38     AVFilterPicRef *ret = av_malloc(sizeof(AVFilterPicRef));
39     *ret = *ref;
40     ret->perms &= pmask;
41     ret->pic->refcount ++;
42     return ret;
43 }
44
45 void avfilter_unref_pic(AVFilterPicRef *ref)
46 {
47     if(!(--ref->pic->refcount))
48         ref->pic->free(ref->pic);
49     av_free(ref);
50 }
51
52 void avfilter_insert_pad(unsigned idx, unsigned *count, size_t padidx_off,
53                          AVFilterPad **pads, AVFilterLink ***links,
54                          AVFilterPad *newpad)
55 {
56     unsigned i;
57
58     idx = FFMIN(idx, *count);
59
60     *pads  = av_realloc(*pads,  sizeof(AVFilterPad)   * (*count + 1));
61     *links = av_realloc(*links, sizeof(AVFilterLink*) * (*count + 1));
62     memmove(*pads +idx+1, *pads +idx, sizeof(AVFilterPad)   * (*count-idx));
63     memmove(*links+idx+1, *links+idx, sizeof(AVFilterLink*) * (*count-idx));
64     memcpy(*pads+idx, newpad, sizeof(AVFilterPad));
65     (*links)[idx] = NULL;
66
67     (*count) ++;
68     for(i = idx+1; i < *count; i ++)
69         if(*links[i])
70             (*(unsigned *)((uint8_t *) *links[i] + padidx_off)) ++;
71 }
72
73 int avfilter_link(AVFilterContext *src, unsigned srcpad,
74                   AVFilterContext *dst, unsigned dstpad)
75 {
76     AVFilterLink *link;
77
78     if(src->output_count <= srcpad || dst->input_count <= dstpad ||
79        src->outputs[srcpad]        || dst->inputs[dstpad])
80         return -1;
81
82     src->outputs[srcpad] =
83     dst-> inputs[dstpad] = link = av_mallocz(sizeof(AVFilterLink));
84
85     link->src     = src;
86     link->dst     = dst;
87     link->srcpad  = srcpad;
88     link->dstpad  = dstpad;
89     link->format  = -1;
90
91     return 0;
92 }
93
94 int avfilter_insert_filter(AVFilterLink *link, AVFilterContext *filt,
95                            unsigned in, unsigned out)
96 {
97     av_log(link->dst, AV_LOG_INFO, "auto-inserting filter '%s'\n",
98             filt->filter->name);
99
100     link->dst->inputs[link->dstpad] = NULL;
101     if(avfilter_link(filt, out, link->dst, link->dstpad)) {
102         /* failed to link output filter to new filter */
103         link->dst->inputs[link->dstpad] = link;
104         return -1;
105     }
106
107     /* re-hookup the link to the new destination filter we inserted */
108     link->dst = filt;
109     link->dstpad = in;
110     filt->inputs[in] = link;
111
112     /* if any information on supported colorspaces already exists on the
113      * link, we need to preserve that */
114     if(link->out_formats)
115         avfilter_formats_changeref(&link->out_formats,
116                                    &filt->outputs[out]->out_formats);
117
118     return 0;
119 }
120
121 int avfilter_config_links(AVFilterContext *filter)
122 {
123     int (*config_link)(AVFilterLink *);
124     unsigned i;
125
126     for(i = 0; i < filter->input_count; i ++) {
127         AVFilterLink *link = filter->inputs[i];
128
129         if(!link) continue;
130
131         switch(link->init_state) {
132         case AVLINK_INIT:
133             continue;
134         case AVLINK_STARTINIT:
135             av_log(filter, AV_LOG_INFO, "circular filter chain detected\n");
136             return 0;
137         case AVLINK_UNINIT:
138             link->init_state = AVLINK_STARTINIT;
139
140             if(avfilter_config_links(link->src))
141                 return -1;
142
143             if(!(config_link = link_spad(link).config_props))
144                 config_link  = avfilter_default_config_output_link;
145             if(config_link(link))
146                 return -1;
147
148             if((config_link = link_dpad(link).config_props))
149                 if(config_link(link))
150                     return -1;
151
152             link->init_state = AVLINK_INIT;
153         }
154     }
155
156     return 0;
157 }
158
159 AVFilterPicRef *avfilter_get_video_buffer(AVFilterLink *link, int perms)
160 {
161     AVFilterPicRef *ret = NULL;
162
163     if(link_dpad(link).get_video_buffer)
164         ret = link_dpad(link).get_video_buffer(link, perms);
165
166     if(!ret)
167         ret = avfilter_default_get_video_buffer(link, perms);
168
169     return ret;
170 }
171
172 int avfilter_request_frame(AVFilterLink *link)
173 {
174     if(link_spad(link).request_frame)
175         return link_spad(link).request_frame(link);
176     else if(link->src->inputs[0])
177         return avfilter_request_frame(link->src->inputs[0]);
178     else return -1;
179 }
180
181 int avfilter_poll_frame(AVFilterLink *link)
182 {
183     int i, min=INT_MAX;
184
185     if(link_spad(link).poll_frame)
186         return link_spad(link).poll_frame(link);
187
188     for (i=0; i<link->src->input_count; i++) {
189         if(!link->src->inputs[i])
190             return -1;
191         min = FFMIN(min, avfilter_poll_frame(link->src->inputs[i]));
192     }
193
194     return min;
195 }
196
197 /* XXX: should we do the duplicating of the picture ref here, instead of
198  * forcing the source filter to do it? */
199 void avfilter_start_frame(AVFilterLink *link, AVFilterPicRef *picref)
200 {
201     void (*start_frame)(AVFilterLink *, AVFilterPicRef *);
202     AVFilterPad *dst = &link_dpad(link);
203
204     if(!(start_frame = dst->start_frame))
205         start_frame = avfilter_default_start_frame;
206
207     /* prepare to copy the picture if it has insufficient permissions */
208     if((dst->min_perms & picref->perms) != dst->min_perms ||
209         dst->rej_perms & picref->perms) {
210         /*
211         av_log(link->dst, AV_LOG_INFO,
212                 "frame copy needed (have perms %x, need %x, reject %x)\n",
213                 picref->perms,
214                 link_dpad(link).min_perms, link_dpad(link).rej_perms);
215         */
216
217         link->cur_pic = avfilter_default_get_video_buffer(link, dst->min_perms);
218         link->srcpic = picref;
219         link->cur_pic->pts = link->srcpic->pts;
220     }
221     else
222         link->cur_pic = picref;
223
224     start_frame(link, link->cur_pic);
225 }
226
227 void avfilter_end_frame(AVFilterLink *link)
228 {
229     void (*end_frame)(AVFilterLink *);
230
231     if(!(end_frame = link_dpad(link).end_frame))
232         end_frame = avfilter_default_end_frame;
233
234     end_frame(link);
235
236     /* unreference the source picture if we're feeding the destination filter
237      * a copied version dues to permission issues */
238     if(link->srcpic) {
239         avfilter_unref_pic(link->srcpic);
240         link->srcpic = NULL;
241     }
242
243 }
244
245 void avfilter_draw_slice(AVFilterLink *link, int y, int h)
246 {
247     uint8_t *src[4], *dst[4];
248     int i, j, hsub, vsub;
249
250     /* copy the slice if needed for permission reasons */
251     if(link->srcpic) {
252         avcodec_get_chroma_sub_sample(link->format, &hsub, &vsub);
253
254         for(i = 0; i < 4; i ++) {
255             if(link->srcpic->data[i]) {
256                 src[i] = link->srcpic-> data[i] +
257                     (y >> (i==0 ? 0 : vsub)) * link->srcpic-> linesize[i];
258                 dst[i] = link->cur_pic->data[i] +
259                     (y >> (i==0 ? 0 : vsub)) * link->cur_pic->linesize[i];
260             } else
261                 src[i] = dst[i] = NULL;
262         }
263
264         for(i = 0; i < 4; i ++) {
265             int planew =
266                 ff_get_plane_bytewidth(link->format, link->cur_pic->w, i);
267
268             if(!src[i]) continue;
269
270             for(j = 0; j < h >> (i==0 ? 0 : vsub); j ++) {
271                 memcpy(dst[i], src[i], planew);
272                 src[i] += link->srcpic ->linesize[i];
273                 dst[i] += link->cur_pic->linesize[i];
274             }
275         }
276     }
277
278     if(link_dpad(link).draw_slice)
279         link_dpad(link).draw_slice(link, y, h);
280 }
281
282 AVFilter *avfilter_get_by_name(const char *name)
283 {
284     struct FilterList *filt;
285
286     for(filt = filters; filt; filt = filt->next)
287         if(!strcmp(filt->filter->name, name))
288             return filt->filter;
289
290     return NULL;
291 }
292
293 void avfilter_register(AVFilter *filter)
294 {
295     struct FilterList *newfilt = av_malloc(sizeof(struct FilterList));
296
297     newfilt->filter = filter;
298     newfilt->next   = filters;
299     filters         = newfilt;
300 }
301
302 void avfilter_uninit(void)
303 {
304     struct FilterList *tmp;
305
306     for(; filters; filters = tmp) {
307         tmp = filters->next;
308         av_free(filters);
309     }
310 }
311
312 static int pad_count(const AVFilterPad *pads)
313 {
314     int count;
315
316     for(count = 0; pads->name; count ++) pads ++;
317     return count;
318 }
319
320 static const char *filter_name(void *p)
321 {
322     AVFilterContext *filter = p;
323     return filter->filter->name;
324 }
325
326 static const AVClass avfilter_class = {
327     "AVFilter",
328     filter_name
329 };
330
331 AVFilterContext *avfilter_open(AVFilter *filter, const char *inst_name)
332 {
333     AVFilterContext *ret;
334
335     if (!filter)
336         return 0;
337
338     ret = av_malloc(sizeof(AVFilterContext));
339
340     ret->av_class = &avfilter_class;
341     ret->filter   = filter;
342     ret->name     = inst_name ? av_strdup(inst_name) : NULL;
343     ret->priv     = av_mallocz(filter->priv_size);
344
345     ret->input_count  = pad_count(filter->inputs);
346     ret->input_pads   = av_malloc(sizeof(AVFilterPad) * ret->input_count);
347     memcpy(ret->input_pads, filter->inputs, sizeof(AVFilterPad)*ret->input_count);
348     ret->inputs       = av_mallocz(sizeof(AVFilterLink*) * ret->input_count);
349
350     ret->output_count = pad_count(filter->outputs);
351     ret->output_pads  = av_malloc(sizeof(AVFilterPad) * ret->output_count);
352     memcpy(ret->output_pads, filter->outputs, sizeof(AVFilterPad)*ret->output_count);
353     ret->outputs      = av_mallocz(sizeof(AVFilterLink*) * ret->output_count);
354
355     return ret;
356 }
357
358 void avfilter_destroy(AVFilterContext *filter)
359 {
360     int i;
361
362     if(filter->filter->uninit)
363         filter->filter->uninit(filter);
364
365     for(i = 0; i < filter->input_count; i ++) {
366         if(filter->inputs[i])
367             filter->inputs[i]->src->outputs[filter->inputs[i]->srcpad] = NULL;
368         av_freep(&filter->inputs[i]);
369     }
370     for(i = 0; i < filter->output_count; i ++) {
371         if(filter->outputs[i])
372             filter->outputs[i]->dst->inputs[filter->outputs[i]->dstpad] = NULL;
373         av_freep(&filter->outputs[i]);
374     }
375
376     av_freep(&filter->name);
377     av_freep(&filter->input_pads);
378     av_freep(&filter->output_pads);
379     av_freep(&filter->inputs);
380     av_freep(&filter->outputs);
381     av_freep(&filter->priv);
382     av_free(filter);
383 }
384
385 int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
386 {
387     int ret=0;
388
389     if(filter->filter->init)
390         ret = filter->filter->init(filter, args, opaque);
391     return ret;
392 }
393