From: Diego Elio Pettenò Date: Tue, 25 Jan 2011 21:40:12 +0000 (+0000) Subject: Hide the now-prefixed decoders, encoders, parsers, bsf, hwaccel objects. X-Git-Tag: v0.7b2~1089 X-Git-Url: https://git.libav.org/?p=libav.git;a=commitdiff_plain;h=ac28ce5fac2f77891d70c9e49cda65ddb51818b2 Hide the now-prefixed decoders, encoders, parsers, bsf, hwaccel objects. This significantly reduces the size of the symbol table in the generated ELF shared object (as well as the other linked tables). Signed-off-by: Mans Rullgard --- diff --git a/libavcodec/libavcodec.v b/libavcodec/libavcodec.v index 561a42cd4f..65699038ab 100644 --- a/libavcodec/libavcodec.v +++ b/libavcodec/libavcodec.v @@ -1,3 +1,9 @@ LIBAVCODEC_$MAJOR { global: *; + local: + ff_*_bsf; + ff_*_decoder; + ff_*_encoder; + ff_*_hwaccel; + ff_*_parser; };