mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-01 15:54:26 +08:00
Add ff_ prefix to data symbols of encoders, decoders, hwaccel, parsers, bsf.
None of these symbols should be accessed directly, so declare them as hidden. Signed-off-by: Mans Rullgard <mans@mansr.com> (cherry picked from commit d36beb3f6902b1217beda576aa18abf7eb72b03c)
This commit is contained in:

committed by
Michael Niedermayer

parent
4b21c38180
commit
e7e2df27f8
@ -88,7 +88,7 @@ static av_cold int decode_end(AVCodecContext * avctx)
|
||||
}
|
||||
|
||||
#if CONFIG_MP1FLOAT_DECODER
|
||||
AVCodec mp1float_decoder =
|
||||
AVCodec ff_mp1float_decoder =
|
||||
{
|
||||
"mp1float",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@ -104,7 +104,7 @@ AVCodec mp1float_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP2FLOAT_DECODER
|
||||
AVCodec mp2float_decoder =
|
||||
AVCodec ff_mp2float_decoder =
|
||||
{
|
||||
"mp2float",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@ -120,7 +120,7 @@ AVCodec mp2float_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP3FLOAT_DECODER
|
||||
AVCodec mp3float_decoder =
|
||||
AVCodec ff_mp3float_decoder =
|
||||
{
|
||||
"mp3float",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@ -136,7 +136,7 @@ AVCodec mp3float_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP3ADUFLOAT_DECODER
|
||||
AVCodec mp3adufloat_decoder =
|
||||
AVCodec ff_mp3adufloat_decoder =
|
||||
{
|
||||
"mp3adufloat",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@ -152,7 +152,7 @@ AVCodec mp3adufloat_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP3ON4FLOAT_DECODER
|
||||
AVCodec mp3on4float_decoder =
|
||||
AVCodec ff_mp3on4float_decoder =
|
||||
{
|
||||
"mp3on4float",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
|
Reference in New Issue
Block a user