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:
Diego Elio Pettenò
2011-01-25 21:40:11 +00:00
committed by Michael Niedermayer
parent 4b21c38180
commit e7e2df27f8
268 changed files with 358 additions and 358 deletions

View File

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