diff options
author | Diego Elio Pettenò <flameeyes@gmail.com> | 2011-01-25 22:03:29 +0000 |
---|---|---|
committer | Mans Rullgard <mans@mansr.com> | 2011-01-28 01:45:17 +0000 |
commit | e62886403355614f0579a1568a53f04037c90df8 (patch) | |
tree | 8fe11e8eab1f7d0051a25d9df5321b48d4059f4d /libavformat/libavformat.v | |
parent | ac28ce5fac2f77891d70c9e49cda65ddb51818b2 (diff) | |
download | ffmpeg-e62886403355614f0579a1568a53f04037c90df8.tar.gz |
Hide demuxers', muxers' and protocols' objects via the ld version script.
This reduces the symbols exported by libavformat from 699 to 451.
Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'libavformat/libavformat.v')
-rw-r--r-- | libavformat/libavformat.v | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavformat/libavformat.v b/libavformat/libavformat.v index da2311eb36..0ec1c3c4de 100644 --- a/libavformat/libavformat.v +++ b/libavformat/libavformat.v @@ -1,3 +1,7 @@ LIBAVFORMAT_$MAJOR { global: *; + local: + ff_*_demuxer; + ff_*_muxer; + ff_*_protocol; }; |