Commit e27e7ef2 authored by vitor's avatar vitor

Rename functions now static

Commited in SoC by Vitor Sessak on 2008-03-26 21:06:01


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12741 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8a012d07
...@@ -253,7 +253,7 @@ static int link_filter(AVFilterGraph *ctx, int src, int srcpad, ...@@ -253,7 +253,7 @@ static int link_filter(AVFilterGraph *ctx, int src, int srcpad,
return 0; return 0;
} }
int graph_load_from_desc3(AVFilterGraph *graph, AVFilterGraphDesc *desc, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad) static int load_from_desc(AVFilterGraph *graph, AVFilterGraphDesc *desc, AVFilterContext *in, int inpad, AVFilterContext *out, int outpad)
{ {
AVFilterGraphDescExport *curpad; AVFilterGraphDescExport *curpad;
char tmp[20]; char tmp[20];
...@@ -477,7 +477,7 @@ static int parse_inouts(const char **buf, AVFilterInOut **inout, int firstpad, ...@@ -477,7 +477,7 @@ static int parse_inouts(const char **buf, AVFilterInOut **inout, int firstpad,
/** /**
* Free a graph description. * Free a graph description.
*/ */
void avfilter_graph_free_desc(AVFilterGraphDesc *desc) static void free_desc(AVFilterGraphDesc *desc)
{ {
void *next; void *next;
...@@ -624,7 +624,7 @@ static AVFilterGraphDesc *parse_chain(const char *filters, int has_in) ...@@ -624,7 +624,7 @@ static AVFilterGraphDesc *parse_chain(const char *filters, int has_in)
fail: fail:
free_inout(head); free_inout(head);
avfilter_graph_free_desc(ret); free_desc(ret);
return NULL; return NULL;
} }
...@@ -643,11 +643,11 @@ int avfilter_graph_parse_chain(AVFilterGraph *graph, const char *filters, AVFilt ...@@ -643,11 +643,11 @@ int avfilter_graph_parse_chain(AVFilterGraph *graph, const char *filters, AVFilt
if (!desc) if (!desc)
return -1; return -1;
if (graph_load_from_desc3(graph, desc, in, inpad, out, outpad) < 0) { if (load_from_desc(graph, desc, in, inpad, out, outpad) < 0) {
avfilter_graph_free_desc(desc); free_desc(desc);
return -1; return -1;
} }
avfilter_graph_free_desc(desc); free_desc(desc);
return 0; return 0;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment