3 * copyright (c) 2007 Bobby Bingham
5 * This file is part of FFmpeg.
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.
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.
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
28 /** list of registered filters, sorted by name */
29 static int filter_count
= 0;
30 static AVFilter
**filters
= NULL
;
32 /* TODO: buffer pool. see comment for avfilter_default_get_video_buffer() */
33 void avfilter_default_free_video_buffer(AVFilterPic
*pic
)
35 avpicture_free((AVPicture
*) pic
);
39 /* TODO: set the buffer's priv member to a context structure for the whole
40 * filter chain. This will allow for a buffer pool instead of the constant
41 * alloc & free cycle currently implemented. */
42 AVFilterPicRef
*avfilter_default_get_video_buffer(AVFilterLink
*link
, int perms
)
44 AVFilterPic
*pic
= av_mallocz(sizeof(AVFilterPic
));
45 AVFilterPicRef
*ref
= av_mallocz(sizeof(AVFilterPicRef
));
53 pic
->format
= link
->format
;
54 pic
->free
= avfilter_default_free_video_buffer
;
55 avpicture_alloc((AVPicture
*)pic
, pic
->format
, ref
->w
, ref
->h
);
57 ref
->data
[0] = pic
->data
[0];
58 ref
->data
[1] = pic
->data
[1];
59 ref
->data
[2] = pic
->data
[2];
60 ref
->data
[3] = pic
->data
[3];
65 void avfilter_default_start_frame(AVFilterLink
*link
, AVFilterPicRef
*picref
)
67 link
->cur_pic
= picref
;
70 void avfilter_default_end_frame(AVFilterLink
*link
)
72 avfilter_unref_pic(link
->cur_pic
);
76 AVFilterPicRef
*avfilter_ref_pic(AVFilterPicRef
*ref
)
78 AVFilterPicRef
*ret
= av_malloc(sizeof(AVFilterPicRef
));
79 memcpy(ret
, ref
, sizeof(AVFilterPicRef
));
80 ret
->pic
->refcount
++;
84 void avfilter_unref_pic(AVFilterPicRef
*ref
)
86 if(-- ref
->pic
->refcount
== 0)
87 ref
->pic
->free(ref
->pic
);
91 int avfilter_link(AVFilterContext
*src
, unsigned srcpad
,
92 AVFilterContext
*dst
, unsigned dstpad
)
96 if(src
->outputs
[srcpad
] || dst
->inputs
[dstpad
])
99 src
->outputs
[srcpad
] =
100 dst
->inputs
[dstpad
] = link
= av_malloc(sizeof(AVFilterLink
));
104 link
->srcpad
= srcpad
;
105 link
->dstpad
= dstpad
;
106 link
->cur_pic
= NULL
;
108 src
->filter
->outputs
[dstpad
].set_video_props(link
);
112 AVFilterPicRef
*avfilter_get_video_buffer(AVFilterLink
*link
, int perms
)
114 AVFilterPicRef
*ret
= NULL
;
116 if(link
->dst
->filter
->inputs
[link
->dstpad
].get_video_buffer
)
117 ret
= link
->dst
->filter
->inputs
[link
->dstpad
].get_video_buffer(link
, perms
);
120 ret
= avfilter_default_get_video_buffer(link
, perms
);
125 void avfilter_request_frame(AVFilterLink
*link
)
127 link
->src
->filter
->outputs
[link
->srcpad
].request_frame(link
);
130 /* XXX: should we do the duplicating of the picture ref here, instead of
131 * forcing the source filter to do it? */
132 void avfilter_start_frame(AVFilterLink
*link
, AVFilterPicRef
*picref
)
134 void (*start_frame
)(AVFilterLink
*, AVFilterPicRef
*);
136 start_frame
= link
->dst
->filter
->inputs
[link
->dstpad
].start_frame
;
138 start_frame
= avfilter_default_start_frame
;
140 start_frame(link
, picref
);
143 void avfilter_end_frame(AVFilterLink
*link
)
145 void (*end_frame
)(AVFilterLink
*);
147 end_frame
= link
->dst
->filter
->inputs
[link
->dstpad
].end_frame
;
149 end_frame
= avfilter_default_end_frame
;
154 void avfilter_draw_slice(AVFilterLink
*link
, uint8_t *data
[4], int y
, int h
)
156 link
->dst
->filter
->inputs
[link
->dstpad
].draw_slice(link
, data
, y
, h
);
159 static int filter_cmp(const void *aa
, const void *bb
)
161 const AVFilter
*a
= *(const AVFilter
**)aa
, *b
= *(const AVFilter
**)bb
;
162 return strcmp(a
->name
, b
->name
);
165 AVFilter
*avfilter_get_by_name(char *name
)
167 AVFilter key
= { .name
= name
, };
168 AVFilter
*key2
= &key
;
171 ret
= bsearch(&key2
, filters
, filter_count
, sizeof(AVFilter
**), filter_cmp
);
177 /* FIXME: insert in order, rather than insert at end + resort */
178 void avfilter_register(AVFilter
*filter
)
180 filters
= av_realloc(filters
, sizeof(AVFilter
*) * (filter_count
+1));
181 filters
[filter_count
] = filter
;
182 qsort(filters
, ++filter_count
, sizeof(AVFilter
**), filter_cmp
);
185 void avfilter_init(void)
189 void avfilter_uninit(void)
195 static int pad_count(const AVFilterPad
*pads
)
197 AVFilterPad
*p
= (AVFilterPad
*) pads
;
200 for(count
= 0; p
->name
; count
++) p
++;
204 static const char *filter_name(void *p
)
206 AVFilterContext
*filter
= p
;
207 return filter
->filter
->name
;
210 AVFilterContext
*avfilter_create(AVFilter
*filter
)
212 AVFilterContext
*ret
= av_malloc(sizeof(AVFilterContext
));
214 ret
->av_class
= av_mallocz(sizeof(AVClass
));
215 ret
->av_class
->item_name
= filter_name
;
216 ret
->filter
= filter
;
217 ret
->inputs
= av_mallocz(sizeof(AVFilterLink
*) * pad_count(filter
->inputs
));
218 ret
->outputs
= av_mallocz(sizeof(AVFilterLink
*) * pad_count(filter
->outputs
));
219 ret
->priv
= av_mallocz(filter
->priv_size
);
224 void avfilter_destroy(AVFilterContext
*filter
)
228 if(filter
->filter
->uninit
)
229 filter
->filter
->uninit(filter
);
231 for(i
= 0; i
< pad_count(filter
->filter
->inputs
); i
++) {
232 if(filter
->inputs
[i
])
233 filter
->inputs
[i
]->src
->outputs
[filter
->inputs
[i
]->srcpad
] = NULL
;
234 av_free(filter
->inputs
[i
]);
236 for(i
= 0; i
< pad_count(filter
->filter
->outputs
); i
++) {
237 if(filter
->outputs
[i
])
238 filter
->outputs
[i
]->dst
->inputs
[filter
->outputs
[i
]->dstpad
] = NULL
;
239 av_free(filter
->outputs
[i
]);
242 av_free(filter
->inputs
);
243 av_free(filter
->outputs
);
244 av_free(filter
->priv
);
245 av_free(filter
->av_class
);
249 AVFilterContext
*avfilter_create_by_name(char *name
)
253 if(!(filt
= avfilter_get_by_name(name
))) return NULL
;
254 return avfilter_create(filt
);
257 int avfilter_init_filter(AVFilterContext
*filter
)
261 if(filter
->filter
->init
)
262 if((ret
= filter
->filter
->init(filter
))) return ret
;
263 for(i
= 0; i
< pad_count(filter
->filter
->outputs
); i
++)
264 if(filter
->outputs
[i
])
265 filter
->filter
->outputs
[i
].set_video_props(filter
->outputs
[i
]);