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
pull/126/head
Vitor Sessak 17 years ago
parent 6d8c67a778
commit 44b73497d3
  1. 10
      libavfilter/avfilter.c

@ -304,7 +304,7 @@ static const char *filter_name(void *p)
return filter->filter->name; 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)); AVFilterContext *ret = av_malloc(sizeof(AVFilterContext));
@ -355,14 +355,6 @@ void avfilter_destroy(AVFilterContext *filter)
av_free(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 avfilter_init_filter(AVFilterContext *filter, const char *args, void *opaque)
{ {
int ret; int ret;

Loading…
Cancel
Save