mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-12 10:00:08 +01: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 d36beb3f69)
This commit is contained in:
committed by
Michael Niedermayer
parent
4b21c38180
commit
e7e2df27f8
@@ -2308,7 +2308,7 @@ static int decode_frame_mp3on4(AVCodecContext * avctx,
|
||||
|
||||
#if !CONFIG_FLOAT
|
||||
#if CONFIG_MP1_DECODER
|
||||
AVCodec mp1_decoder =
|
||||
AVCodec ff_mp1_decoder =
|
||||
{
|
||||
"mp1",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@@ -2324,7 +2324,7 @@ AVCodec mp1_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP2_DECODER
|
||||
AVCodec mp2_decoder =
|
||||
AVCodec ff_mp2_decoder =
|
||||
{
|
||||
"mp2",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@@ -2340,7 +2340,7 @@ AVCodec mp2_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP3_DECODER
|
||||
AVCodec mp3_decoder =
|
||||
AVCodec ff_mp3_decoder =
|
||||
{
|
||||
"mp3",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@@ -2356,7 +2356,7 @@ AVCodec mp3_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP3ADU_DECODER
|
||||
AVCodec mp3adu_decoder =
|
||||
AVCodec ff_mp3adu_decoder =
|
||||
{
|
||||
"mp3adu",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
@@ -2372,7 +2372,7 @@ AVCodec mp3adu_decoder =
|
||||
};
|
||||
#endif
|
||||
#if CONFIG_MP3ON4_DECODER
|
||||
AVCodec mp3on4_decoder =
|
||||
AVCodec ff_mp3on4_decoder =
|
||||
{
|
||||
"mp3on4",
|
||||
AVMEDIA_TYPE_AUDIO,
|
||||
|
||||
Reference in New Issue
Block a user