diff options
author | Víctor Paesa <victorpaesa@googlemail.com> | 2009-03-26 21:46:45 +0000 |
---|---|---|
committer | Víctor Paesa <victorpaesa@googlemail.com> | 2009-03-26 21:46:45 +0000 |
commit | b6fec3eb7f9ddfda25202eb272900ffdeeb753b3 (patch) | |
tree | 86765d60c1978ecf4ff7a4001e19cb0dff564846 /libavfilter/avfilter.c | |
parent | 3ec88c74b089afa35ef06f82113f78fa6ff61c92 (diff) | |
download | ffmpeg-b6fec3eb7f9ddfda25202eb272900ffdeeb753b3.tar.gz |
Make static the list of registered filters.
Originally committed as revision 18198 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavfilter/avfilter.c')
-rw-r--r-- | libavfilter/avfilter.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavfilter/avfilter.c b/libavfilter/avfilter.c index 1dbc01622b..349d0af0ee 100644 --- a/libavfilter/avfilter.c +++ b/libavfilter/avfilter.c @@ -27,7 +27,7 @@ unsigned avfilter_version(void) { } /** list of registered filters */ -struct FilterList +static struct FilterList { AVFilter *filter; struct FilterList *next; |