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>
This commit is contained in:
Diego Elio Pettenò
2011-01-25 21:40:11 +00:00
committed by Mans Rullgard
parent 2d162e3825
commit d36beb3f69
268 changed files with 358 additions and 358 deletions

View File

@@ -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,