[FFmpeg-devel] [PATCH 17/17] avcodec/libavcodec.v: Tighten export whitelist
Andreas Rheinhardt
andreas.rheinhardt at outlook.com
Tue Jun 15 01:41:33 EEST 2021
Currently every symbol (with external linkage) that starts with "av" is
exported. Yet libaom-av1 has lots of functions that are not meant to be
exported and start with "av1_" (I counted 1236); and libvpx has
average_split_mvs. These functions are exported if one links these
libraries statically into a shared libavcodec.so.
Solve this by tightening the whitelist to "av_", "avcodec_", "avpriv_"
and (as a special-case) "avsubtitle_free".
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt at outlook.com>
---
libavcodec/libavcodec.v | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/libavcodec/libavcodec.v b/libavcodec/libavcodec.v
index f1d5e5bc77..d863e056a5 100644
--- a/libavcodec/libavcodec.v
+++ b/libavcodec/libavcodec.v
@@ -1,6 +1,9 @@
LIBAVCODEC_MAJOR {
global:
- av*;
+ av_*;
+ avcodec_*;
+ avpriv_*;
+ avsubtitle_free;
local:
*;
};
--
2.27.0
More information about the ffmpeg-devel
mailing list