From: Anton Khirnov Date: Mon, 17 Oct 2011 08:13:16 +0000 (+0200) Subject: lavc: hide private symbols. X-Git-Tag: v0.8b1~1013 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=65d3176aaf8f876e0769f200abe95cac42151c89;p=platform%2Fupstream%2Flibav.git lavc: hide private symbols. Overhead as reported by rbelf-size goes from 90860 to 20204. --- diff --git a/libavcodec/libavcodec.v b/libavcodec/libavcodec.v index 6569903..a9e7674 100644 --- a/libavcodec/libavcodec.v +++ b/libavcodec/libavcodec.v @@ -1,9 +1,8 @@ LIBAVCODEC_$MAJOR { - global: *; - local: - ff_*_bsf; - ff_*_decoder; - ff_*_encoder; - ff_*_hwaccel; - ff_*_parser; + global: av*; + audio_resample; + audio_resample_close; + #deprecated, remove after next bump + img_get_alpha_info; + local: *; };