]> granicus.if.org Git - libvpx/commit
Mark loopfilter C functions as static
authorJohn Koleszar <jkoleszar@google.com>
Mon, 9 Aug 2010 13:33:00 +0000 (09:33 -0400)
committerJohn Koleszar <jkoleszar@google.com>
Mon, 9 Aug 2010 13:36:44 +0000 (09:36 -0400)
commit618c7d27a0e5521d5031d8d885b45536dda50815
tree2cb2fbc4c9af033c1e274abd18de03d1863e530e
parentcfb204eaf7b8f6c20c7c8a207e6fae89d7337a73
Mark loopfilter C functions as static

Clang defaults to C99 mode, and inline works differently in C99.
(gcc, on the other hand, defaults to a special gnu-style inlining,
which uses different syntax.)   Making the functions static makes sure
clang doesn't decide to discard a function because it's too large to
inline.

Thanks to eli.friedman for the patch.

Fixes http://code.google.com/p/webm/issues/detail?id=114

Change-Id: If3c1c3c176eb855a584a60007237283b0cc631a4
vp8/common/loopfilter_filters.c