mirror of https://git.ffmpeg.org/ffmpeg.git
Rename avfilter_create to avfilter_open and remove the wrapper function
avfilter_create_by_name. Commited in SoC by Bobby Bingham on 2007-08-17 23:39:55 Originally committed as revision 12014 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
6d8c67a778
commit
44b73497d3
|
@ -304,7 +304,7 @@ static const char *filter_name(void *p)
|
|||
return filter->filter->name;
|
||||
}
|
||||
|
||||
AVFilterContext *avfilter_create(AVFilter *filter, char *inst_name)
|
||||
AVFilterContext *avfilter_open(AVFilter *filter, char *inst_name)
|
||||
{
|
||||
AVFilterContext *ret = av_malloc(sizeof(AVFilterContext));
|
||||
|
||||
|
@ -355,14 +355,6 @@ void avfilter_destroy(AVFilterContext *filter)
|
|||
av_free(filter);
|
||||
}
|
||||
|
||||
AVFilterContext *avfilter_create_by_name(char *name, char *inst_name)
|
||||
{
|
||||
AVFilter *filt;
|
||||
|
||||
if(!(filt = avfilter_get_by_name(name))) return NULL;
|
||||
return avfilter_create(filt, inst_name);
|
||||
}
|
||||
|
||||
int avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
|
||||
{
|
||||
int ret;
|
||||
|
|
Loading…
Reference in New Issue