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)
| ... | ... |
@@ -92,7 +92,7 @@ static av_cold int eightsvx_decode_init(AVCodecContext *avctx) |
| 92 | 92 |
return 0; |
| 93 | 93 |
} |
| 94 | 94 |
|
| 95 |
-AVCodec eightsvx_fib_decoder = {
|
|
| 95 |
+AVCodec ff_eightsvx_fib_decoder = {
|
|
| 96 | 96 |
.name = "8svx_fib", |
| 97 | 97 |
.type = AVMEDIA_TYPE_AUDIO, |
| 98 | 98 |
.id = CODEC_ID_8SVX_FIB, |
| ... | ... |
@@ -102,7 +102,7 @@ AVCodec eightsvx_fib_decoder = {
|
| 102 | 102 |
.long_name = NULL_IF_CONFIG_SMALL("8SVX fibonacci"),
|
| 103 | 103 |
}; |
| 104 | 104 |
|
| 105 |
-AVCodec eightsvx_exp_decoder = {
|
|
| 105 |
+AVCodec ff_eightsvx_exp_decoder = {
|
|
| 106 | 106 |
.name = "8svx_exp", |
| 107 | 107 |
.type = AVMEDIA_TYPE_AUDIO, |
| 108 | 108 |
.id = CODEC_ID_8SVX_EXP, |
| ... | ... |
@@ -362,7 +362,7 @@ static int a64multi_encode_frame(AVCodecContext *avctx, unsigned char *buf, |
| 362 | 362 |
return 0; |
| 363 | 363 |
} |
| 364 | 364 |
|
| 365 |
-AVCodec a64multi_encoder = {
|
|
| 365 |
+AVCodec ff_a64multi_encoder = {
|
|
| 366 | 366 |
.name = "a64multi", |
| 367 | 367 |
.type = AVMEDIA_TYPE_VIDEO, |
| 368 | 368 |
.id = CODEC_ID_A64_MULTI, |
| ... | ... |
@@ -375,7 +375,7 @@ AVCodec a64multi_encoder = {
|
| 375 | 375 |
.capabilities = CODEC_CAP_DELAY, |
| 376 | 376 |
}; |
| 377 | 377 |
|
| 378 |
-AVCodec a64multi5_encoder = {
|
|
| 378 |
+AVCodec ff_a64multi5_encoder = {
|
|
| 379 | 379 |
.name = "a64multi5", |
| 380 | 380 |
.type = AVMEDIA_TYPE_VIDEO, |
| 381 | 381 |
.id = CODEC_ID_A64_MULTI5, |
| ... | ... |
@@ -107,7 +107,7 @@ static int aac_adtstoasc_filter(AVBitStreamFilterContext *bsfc, |
| 107 | 107 |
return 0; |
| 108 | 108 |
} |
| 109 | 109 |
|
| 110 |
-AVBitStreamFilter aac_adtstoasc_bsf = {
|
|
| 110 |
+AVBitStreamFilter ff_aac_adtstoasc_bsf = {
|
|
| 111 | 111 |
"aac_adtstoasc", |
| 112 | 112 |
sizeof(AACBSFContext), |
| 113 | 113 |
aac_adtstoasc_filter, |
| ... | ... |
@@ -2351,7 +2351,7 @@ av_cold static int latm_decode_init(AVCodecContext *avctx) |
| 2351 | 2351 |
} |
| 2352 | 2352 |
|
| 2353 | 2353 |
|
| 2354 |
-AVCodec aac_decoder = {
|
|
| 2354 |
+AVCodec ff_aac_decoder = {
|
|
| 2355 | 2355 |
"aac", |
| 2356 | 2356 |
AVMEDIA_TYPE_AUDIO, |
| 2357 | 2357 |
CODEC_ID_AAC, |
| ... | ... |
@@ -2372,7 +2372,7 @@ AVCodec aac_decoder = {
|
| 2372 | 2372 |
in MPEG transport streams which only contain one program. |
| 2373 | 2373 |
To do a more complex LATM demuxing a separate LATM demuxer should be used. |
| 2374 | 2374 |
*/ |
| 2375 |
-AVCodec aac_latm_decoder = {
|
|
| 2375 |
+AVCodec ff_aac_latm_decoder = {
|
|
| 2376 | 2376 |
.name = "aac_latm", |
| 2377 | 2377 |
.type = CODEC_TYPE_AUDIO, |
| 2378 | 2378 |
.id = CODEC_ID_AAC_LATM, |
| ... | ... |
@@ -1437,7 +1437,7 @@ static av_cold int ac3_decode_end(AVCodecContext *avctx) |
| 1437 | 1437 |
return 0; |
| 1438 | 1438 |
} |
| 1439 | 1439 |
|
| 1440 |
-AVCodec ac3_decoder = {
|
|
| 1440 |
+AVCodec ff_ac3_decoder = {
|
|
| 1441 | 1441 |
.name = "ac3", |
| 1442 | 1442 |
.type = AVMEDIA_TYPE_AUDIO, |
| 1443 | 1443 |
.id = CODEC_ID_AC3, |
| ... | ... |
@@ -1449,7 +1449,7 @@ AVCodec ac3_decoder = {
|
| 1449 | 1449 |
}; |
| 1450 | 1450 |
|
| 1451 | 1451 |
#if CONFIG_EAC3_DECODER |
| 1452 |
-AVCodec eac3_decoder = {
|
|
| 1452 |
+AVCodec ff_eac3_decoder = {
|
|
| 1453 | 1453 |
.name = "eac3", |
| 1454 | 1454 |
.type = AVMEDIA_TYPE_AUDIO, |
| 1455 | 1455 |
.id = CODEC_ID_EAC3, |
| ... | ... |
@@ -1708,7 +1708,7 @@ static int adpcm_decode_frame(AVCodecContext *avctx, |
| 1708 | 1708 |
|
| 1709 | 1709 |
#if CONFIG_ENCODERS |
| 1710 | 1710 |
#define ADPCM_ENCODER(id,name,long_name_) \ |
| 1711 |
-AVCodec name ## _encoder = { \
|
|
| 1711 |
+AVCodec ff_ ## name ## _encoder = { \
|
|
| 1712 | 1712 |
#name, \ |
| 1713 | 1713 |
AVMEDIA_TYPE_AUDIO, \ |
| 1714 | 1714 |
id, \ |
| ... | ... |
@@ -1726,7 +1726,7 @@ AVCodec name ## _encoder = { \
|
| 1726 | 1726 |
|
| 1727 | 1727 |
#if CONFIG_DECODERS |
| 1728 | 1728 |
#define ADPCM_DECODER(id,name,long_name_) \ |
| 1729 |
-AVCodec name ## _decoder = { \
|
|
| 1729 |
+AVCodec ff_ ## name ## _decoder = { \
|
|
| 1730 | 1730 |
#name, \ |
| 1731 | 1731 |
AVMEDIA_TYPE_AUDIO, \ |
| 1732 | 1732 |
id, \ |
| ... | ... |
@@ -27,23 +27,23 @@ |
| 27 | 27 |
#include "avcodec.h" |
| 28 | 28 |
|
| 29 | 29 |
#define REGISTER_HWACCEL(X,x) { \
|
| 30 |
- extern AVHWAccel x##_hwaccel; \ |
|
| 31 |
- if(CONFIG_##X##_HWACCEL) av_register_hwaccel(&x##_hwaccel); } |
|
| 30 |
+ extern AVHWAccel ff_##x##_hwaccel; \ |
|
| 31 |
+ if(CONFIG_##X##_HWACCEL) av_register_hwaccel(&ff_##x##_hwaccel); } |
|
| 32 | 32 |
|
| 33 | 33 |
#define REGISTER_ENCODER(X,x) { \
|
| 34 |
- extern AVCodec x##_encoder; \ |
|
| 35 |
- if(CONFIG_##X##_ENCODER) avcodec_register(&x##_encoder); } |
|
| 34 |
+ extern AVCodec ff_##x##_encoder; \ |
|
| 35 |
+ if(CONFIG_##X##_ENCODER) avcodec_register(&ff_##x##_encoder); } |
|
| 36 | 36 |
#define REGISTER_DECODER(X,x) { \
|
| 37 |
- extern AVCodec x##_decoder; \ |
|
| 38 |
- if(CONFIG_##X##_DECODER) avcodec_register(&x##_decoder); } |
|
| 37 |
+ extern AVCodec ff_##x##_decoder; \ |
|
| 38 |
+ if(CONFIG_##X##_DECODER) avcodec_register(&ff_##x##_decoder); } |
|
| 39 | 39 |
#define REGISTER_ENCDEC(X,x) REGISTER_ENCODER(X,x); REGISTER_DECODER(X,x) |
| 40 | 40 |
|
| 41 | 41 |
#define REGISTER_PARSER(X,x) { \
|
| 42 |
- extern AVCodecParser x##_parser; \ |
|
| 43 |
- if(CONFIG_##X##_PARSER) av_register_codec_parser(&x##_parser); } |
|
| 42 |
+ extern AVCodecParser ff_##x##_parser; \ |
|
| 43 |
+ if(CONFIG_##X##_PARSER) av_register_codec_parser(&ff_##x##_parser); } |
|
| 44 | 44 |
#define REGISTER_BSF(X,x) { \
|
| 45 |
- extern AVBitStreamFilter x##_bsf; \ |
|
| 46 |
- if(CONFIG_##X##_BSF) av_register_bitstream_filter(&x##_bsf); } |
|
| 45 |
+ extern AVBitStreamFilter ff_##x##_bsf; \ |
|
| 46 |
+ if(CONFIG_##X##_BSF) av_register_bitstream_filter(&ff_##x##_bsf); } |
|
| 47 | 47 |
|
| 48 | 48 |
void avcodec_register_all(void) |
| 49 | 49 |
{
|
| ... | ... |
@@ -1036,7 +1036,7 @@ static int amrnb_decode_frame(AVCodecContext *avctx, void *data, int *data_size, |
| 1036 | 1036 |
} |
| 1037 | 1037 |
|
| 1038 | 1038 |
|
| 1039 |
-AVCodec amrnb_decoder = {
|
|
| 1039 |
+AVCodec ff_amrnb_decoder = {
|
|
| 1040 | 1040 |
.name = "amrnb", |
| 1041 | 1041 |
.type = AVMEDIA_TYPE_AUDIO, |
| 1042 | 1042 |
.id = CODEC_ID_AMR_NB, |
| ... | ... |
@@ -1225,7 +1225,7 @@ static int amrwb_decode_frame(AVCodecContext *avctx, void *data, int *data_size, |
| 1225 | 1225 |
return expected_fr_size; |
| 1226 | 1226 |
} |
| 1227 | 1227 |
|
| 1228 |
-AVCodec amrwb_decoder = {
|
|
| 1228 |
+AVCodec ff_amrwb_decoder = {
|
|
| 1229 | 1229 |
.name = "amrwb", |
| 1230 | 1230 |
.type = CODEC_TYPE_AUDIO, |
| 1231 | 1231 |
.id = CODEC_ID_AMR_WB, |
| ... | ... |
@@ -52,7 +52,7 @@ static int ass_decode_frame(AVCodecContext *avctx, void *data, int *got_sub_ptr, |
| 52 | 52 |
return avpkt->size; |
| 53 | 53 |
} |
| 54 | 54 |
|
| 55 |
-AVCodec ass_decoder = {
|
|
| 55 |
+AVCodec ff_ass_decoder = {
|
|
| 56 | 56 |
.name = "ass", |
| 57 | 57 |
.long_name = NULL_IF_CONFIG_SMALL("Advanced SubStation Alpha subtitle"),
|
| 58 | 58 |
.type = AVMEDIA_TYPE_SUBTITLE, |
| ... | ... |
@@ -57,7 +57,7 @@ static int ass_encode_frame(AVCodecContext *avctx, |
| 57 | 57 |
return total_len; |
| 58 | 58 |
} |
| 59 | 59 |
|
| 60 |
-AVCodec ass_encoder = {
|
|
| 60 |
+AVCodec ff_ass_encoder = {
|
|
| 61 | 61 |
.name = "ass", |
| 62 | 62 |
.long_name = NULL_IF_CONFIG_SMALL("Advanced SubStation Alpha subtitle"),
|
| 63 | 63 |
.type = AVMEDIA_TYPE_SUBTITLE, |
| ... | ... |
@@ -613,7 +613,7 @@ static av_cold int decode_end(AVCodecContext *avctx){
|
| 613 | 613 |
return 0; |
| 614 | 614 |
} |
| 615 | 615 |
|
| 616 |
-AVCodec asv1_decoder = {
|
|
| 616 |
+AVCodec ff_asv1_decoder = {
|
|
| 617 | 617 |
"asv1", |
| 618 | 618 |
AVMEDIA_TYPE_VIDEO, |
| 619 | 619 |
CODEC_ID_ASV1, |
| ... | ... |
@@ -626,7 +626,7 @@ AVCodec asv1_decoder = {
|
| 626 | 626 |
.long_name= NULL_IF_CONFIG_SMALL("ASUS V1"),
|
| 627 | 627 |
}; |
| 628 | 628 |
|
| 629 |
-AVCodec asv2_decoder = {
|
|
| 629 |
+AVCodec ff_asv2_decoder = {
|
|
| 630 | 630 |
"asv2", |
| 631 | 631 |
AVMEDIA_TYPE_VIDEO, |
| 632 | 632 |
CODEC_ID_ASV2, |
| ... | ... |
@@ -640,7 +640,7 @@ AVCodec asv2_decoder = {
|
| 640 | 640 |
}; |
| 641 | 641 |
|
| 642 | 642 |
#if CONFIG_ASV1_ENCODER |
| 643 |
-AVCodec asv1_encoder = {
|
|
| 643 |
+AVCodec ff_asv1_encoder = {
|
|
| 644 | 644 |
"asv1", |
| 645 | 645 |
AVMEDIA_TYPE_VIDEO, |
| 646 | 646 |
CODEC_ID_ASV1, |
| ... | ... |
@@ -654,7 +654,7 @@ AVCodec asv1_encoder = {
|
| 654 | 654 |
#endif |
| 655 | 655 |
|
| 656 | 656 |
#if CONFIG_ASV2_ENCODER |
| 657 |
-AVCodec asv2_encoder = {
|
|
| 657 |
+AVCodec ff_asv2_encoder = {
|
|
| 658 | 658 |
"asv2", |
| 659 | 659 |
AVMEDIA_TYPE_VIDEO, |
| 660 | 660 |
CODEC_ID_ASV2, |
| ... | ... |
@@ -130,7 +130,7 @@ static av_cold int bethsoftvid_decode_end(AVCodecContext *avctx) |
| 130 | 130 |
return 0; |
| 131 | 131 |
} |
| 132 | 132 |
|
| 133 |
-AVCodec bethsoftvid_decoder = {
|
|
| 133 |
+AVCodec ff_bethsoftvid_decoder = {
|
|
| 134 | 134 |
.name = "bethsoftvid", |
| 135 | 135 |
.type = AVMEDIA_TYPE_VIDEO, |
| 136 | 136 |
.id = CODEC_ID_BETHSOFTVID, |
| ... | ... |
@@ -286,7 +286,7 @@ static int decode_frame(AVCodecContext *avctx, |
| 286 | 286 |
return buf_size; |
| 287 | 287 |
} |
| 288 | 288 |
|
| 289 |
-AVCodec binkaudio_rdft_decoder = {
|
|
| 289 |
+AVCodec ff_binkaudio_rdft_decoder = {
|
|
| 290 | 290 |
"binkaudio_rdft", |
| 291 | 291 |
AVMEDIA_TYPE_AUDIO, |
| 292 | 292 |
CODEC_ID_BINKAUDIO_RDFT, |
| ... | ... |
@@ -298,7 +298,7 @@ AVCodec binkaudio_rdft_decoder = {
|
| 298 | 298 |
.long_name = NULL_IF_CONFIG_SMALL("Bink Audio (RDFT)")
|
| 299 | 299 |
}; |
| 300 | 300 |
|
| 301 |
-AVCodec binkaudio_dct_decoder = {
|
|
| 301 |
+AVCodec ff_binkaudio_dct_decoder = {
|
|
| 302 | 302 |
"binkaudio_dct", |
| 303 | 303 |
AVMEDIA_TYPE_AUDIO, |
| 304 | 304 |
CODEC_ID_BINKAUDIO_DCT, |
| ... | ... |
@@ -140,7 +140,7 @@ static av_cold int encode_init(AVCodecContext *avctx){
|
| 140 | 140 |
} |
| 141 | 141 |
#endif |
| 142 | 142 |
|
| 143 |
-AVCodec cljr_decoder = {
|
|
| 143 |
+AVCodec ff_cljr_decoder = {
|
|
| 144 | 144 |
"cljr", |
| 145 | 145 |
AVMEDIA_TYPE_VIDEO, |
| 146 | 146 |
CODEC_ID_CLJR, |
| ... | ... |
@@ -154,7 +154,7 @@ AVCodec cljr_decoder = {
|
| 154 | 154 |
}; |
| 155 | 155 |
|
| 156 | 156 |
#if CONFIG_CLJR_ENCODER |
| 157 |
-AVCodec cljr_encoder = {
|
|
| 157 |
+AVCodec ff_cljr_encoder = {
|
|
| 158 | 158 |
"cljr", |
| 159 | 159 |
AVMEDIA_TYPE_VIDEO, |
| 160 | 160 |
CODEC_ID_CLJR, |
| ... | ... |
@@ -178,7 +178,7 @@ static av_cold int cyuv_decode_end(AVCodecContext *avctx) |
| 178 | 178 |
} |
| 179 | 179 |
|
| 180 | 180 |
#if CONFIG_AURA_DECODER |
| 181 |
-AVCodec aura_decoder = {
|
|
| 181 |
+AVCodec ff_aura_decoder = {
|
|
| 182 | 182 |
"aura", |
| 183 | 183 |
AVMEDIA_TYPE_VIDEO, |
| 184 | 184 |
CODEC_ID_AURA, |
| ... | ... |
@@ -194,7 +194,7 @@ AVCodec aura_decoder = {
|
| 194 | 194 |
#endif |
| 195 | 195 |
|
| 196 | 196 |
#if CONFIG_CYUV_DECODER |
| 197 |
-AVCodec cyuv_decoder = {
|
|
| 197 |
+AVCodec ff_cyuv_decoder = {
|
|
| 198 | 198 |
"cyuv", |
| 199 | 199 |
AVMEDIA_TYPE_VIDEO, |
| 200 | 200 |
CODEC_ID_CYUV, |
| ... | ... |
@@ -343,7 +343,7 @@ static int cinaudio_decode_frame(AVCodecContext *avctx, |
| 343 | 343 |
} |
| 344 | 344 |
|
| 345 | 345 |
|
| 346 |
-AVCodec dsicinvideo_decoder = {
|
|
| 346 |
+AVCodec ff_dsicinvideo_decoder = {
|
|
| 347 | 347 |
"dsicinvideo", |
| 348 | 348 |
AVMEDIA_TYPE_VIDEO, |
| 349 | 349 |
CODEC_ID_DSICINVIDEO, |
| ... | ... |
@@ -356,7 +356,7 @@ AVCodec dsicinvideo_decoder = {
|
| 356 | 356 |
.long_name = NULL_IF_CONFIG_SMALL("Delphine Software International CIN video"),
|
| 357 | 357 |
}; |
| 358 | 358 |
|
| 359 |
-AVCodec dsicinaudio_decoder = {
|
|
| 359 |
+AVCodec ff_dsicinaudio_decoder = {
|
|
| 360 | 360 |
"dsicinaudio", |
| 361 | 361 |
AVMEDIA_TYPE_AUDIO, |
| 362 | 362 |
CODEC_ID_DSICINAUDIO, |
| ... | ... |
@@ -1290,7 +1290,7 @@ static int dvvideo_close(AVCodecContext *c) |
| 1290 | 1290 |
|
| 1291 | 1291 |
|
| 1292 | 1292 |
#if CONFIG_DVVIDEO_ENCODER |
| 1293 |
-AVCodec dvvideo_encoder = {
|
|
| 1293 |
+AVCodec ff_dvvideo_encoder = {
|
|
| 1294 | 1294 |
"dvvideo", |
| 1295 | 1295 |
AVMEDIA_TYPE_VIDEO, |
| 1296 | 1296 |
CODEC_ID_DVVIDEO, |
| ... | ... |
@@ -1303,7 +1303,7 @@ AVCodec dvvideo_encoder = {
|
| 1303 | 1303 |
#endif // CONFIG_DVVIDEO_ENCODER |
| 1304 | 1304 |
|
| 1305 | 1305 |
#if CONFIG_DVVIDEO_DECODER |
| 1306 |
-AVCodec dvvideo_decoder = {
|
|
| 1306 |
+AVCodec ff_dvvideo_decoder = {
|
|
| 1307 | 1307 |
"dvvideo", |
| 1308 | 1308 |
AVMEDIA_TYPE_VIDEO, |
| 1309 | 1309 |
CODEC_ID_DVVIDEO, |
| ... | ... |
@@ -179,7 +179,7 @@ static av_cold void dvbsub_parse_close(AVCodecParserContext *s) |
| 179 | 179 |
av_freep(&pc->packet_buf); |
| 180 | 180 |
} |
| 181 | 181 |
|
| 182 |
-AVCodecParser dvbsub_parser = {
|
|
| 182 |
+AVCodecParser ff_dvbsub_parser = {
|
|
| 183 | 183 |
{ CODEC_ID_DVB_SUBTITLE },
|
| 184 | 184 |
sizeof(DVBSubParseContext), |
| 185 | 185 |
dvbsub_parse_init, |
| ... | ... |
@@ -1786,7 +1786,7 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *data_size, AVPac |
| 1786 | 1786 |
return buf_size; |
| 1787 | 1787 |
} |
| 1788 | 1788 |
|
| 1789 |
-AVCodec ffv1_decoder = {
|
|
| 1789 |
+AVCodec ff_ffv1_decoder = {
|
|
| 1790 | 1790 |
"ffv1", |
| 1791 | 1791 |
AVMEDIA_TYPE_VIDEO, |
| 1792 | 1792 |
CODEC_ID_FFV1, |
| ... | ... |
@@ -1801,7 +1801,7 @@ AVCodec ffv1_decoder = {
|
| 1801 | 1801 |
}; |
| 1802 | 1802 |
|
| 1803 | 1803 |
#if CONFIG_FFV1_ENCODER |
| 1804 |
-AVCodec ffv1_encoder = {
|
|
| 1804 |
+AVCodec ff_ffv1_encoder = {
|
|
| 1805 | 1805 |
"ffv1", |
| 1806 | 1806 |
AVMEDIA_TYPE_VIDEO, |
| 1807 | 1807 |
CODEC_ID_FFV1, |
| ... | ... |
@@ -328,7 +328,7 @@ static int g722_decode_frame(AVCodecContext *avctx, void *data, |
| 328 | 328 |
return avpkt->size; |
| 329 | 329 |
} |
| 330 | 330 |
|
| 331 |
-AVCodec adpcm_g722_decoder = {
|
|
| 331 |
+AVCodec ff_adpcm_g722_decoder = {
|
|
| 332 | 332 |
.name = "g722", |
| 333 | 333 |
.type = AVMEDIA_TYPE_AUDIO, |
| 334 | 334 |
.id = CODEC_ID_ADPCM_G722, |
| ... | ... |
@@ -568,7 +568,7 @@ static int g722_encode_frame(AVCodecContext *avctx, |
| 568 | 568 |
return i; |
| 569 | 569 |
} |
| 570 | 570 |
|
| 571 |
-AVCodec adpcm_g722_encoder = {
|
|
| 571 |
+AVCodec ff_adpcm_g722_encoder = {
|
|
| 572 | 572 |
.name = "g722", |
| 573 | 573 |
.type = AVMEDIA_TYPE_AUDIO, |
| 574 | 574 |
.id = CODEC_ID_ADPCM_G722, |
| ... | ... |
@@ -391,7 +391,7 @@ static int g726_decode_frame(AVCodecContext *avctx, |
| 391 | 391 |
} |
| 392 | 392 |
|
| 393 | 393 |
#if CONFIG_ADPCM_G726_ENCODER |
| 394 |
-AVCodec adpcm_g726_encoder = {
|
|
| 394 |
+AVCodec ff_adpcm_g726_encoder = {
|
|
| 395 | 395 |
"g726", |
| 396 | 396 |
AVMEDIA_TYPE_AUDIO, |
| 397 | 397 |
CODEC_ID_ADPCM_G726, |
| ... | ... |
@@ -406,7 +406,7 @@ AVCodec adpcm_g726_encoder = {
|
| 406 | 406 |
}; |
| 407 | 407 |
#endif |
| 408 | 408 |
|
| 409 |
-AVCodec adpcm_g726_decoder = {
|
|
| 409 |
+AVCodec ff_adpcm_g726_decoder = {
|
|
| 410 | 410 |
"g726", |
| 411 | 411 |
AVMEDIA_TYPE_AUDIO, |
| 412 | 412 |
CODEC_ID_ADPCM_G726, |
| ... | ... |
@@ -84,7 +84,7 @@ static int gsm_decode_frame(AVCodecContext *avctx, void *data, |
| 84 | 84 |
return avctx->block_align; |
| 85 | 85 |
} |
| 86 | 86 |
|
| 87 |
-AVCodec gsm_decoder = {
|
|
| 87 |
+AVCodec ff_gsm_decoder = {
|
|
| 88 | 88 |
"gsm", |
| 89 | 89 |
AVMEDIA_TYPE_AUDIO, |
| 90 | 90 |
CODEC_ID_GSM, |
| ... | ... |
@@ -96,7 +96,7 @@ AVCodec gsm_decoder = {
|
| 96 | 96 |
.long_name = NULL_IF_CONFIG_SMALL("GSM"),
|
| 97 | 97 |
}; |
| 98 | 98 |
|
| 99 |
-AVCodec gsm_ms_decoder = {
|
|
| 99 |
+AVCodec ff_gsm_ms_decoder = {
|
|
| 100 | 100 |
"gsm_ms", |
| 101 | 101 |
AVMEDIA_TYPE_AUDIO, |
| 102 | 102 |
CODEC_ID_GSM_MS, |
| ... | ... |
@@ -3360,7 +3360,7 @@ av_cold int ff_h264_decode_end(AVCodecContext *avctx) |
| 3360 | 3360 |
} |
| 3361 | 3361 |
|
| 3362 | 3362 |
|
| 3363 |
-AVCodec h264_decoder = {
|
|
| 3363 |
+AVCodec ff_h264_decoder = {
|
|
| 3364 | 3364 |
"h264", |
| 3365 | 3365 |
AVMEDIA_TYPE_VIDEO, |
| 3366 | 3366 |
CODEC_ID_H264, |
| ... | ... |
@@ -3375,7 +3375,7 @@ AVCodec h264_decoder = {
|
| 3375 | 3375 |
}; |
| 3376 | 3376 |
|
| 3377 | 3377 |
#if CONFIG_H264_VDPAU_DECODER |
| 3378 |
-AVCodec h264_vdpau_decoder = {
|
|
| 3378 |
+AVCodec ff_h264_vdpau_decoder = {
|
|
| 3379 | 3379 |
"h264_vdpau", |
| 3380 | 3380 |
AVMEDIA_TYPE_VIDEO, |
| 3381 | 3381 |
CODEC_ID_H264, |
| ... | ... |
@@ -1416,7 +1416,7 @@ static av_cold int encode_end(AVCodecContext *avctx) |
| 1416 | 1416 |
#endif /* CONFIG_HUFFYUV_ENCODER || CONFIG_FFVHUFF_ENCODER */ |
| 1417 | 1417 |
|
| 1418 | 1418 |
#if CONFIG_HUFFYUV_DECODER |
| 1419 |
-AVCodec huffyuv_decoder = {
|
|
| 1419 |
+AVCodec ff_huffyuv_decoder = {
|
|
| 1420 | 1420 |
"huffyuv", |
| 1421 | 1421 |
AVMEDIA_TYPE_VIDEO, |
| 1422 | 1422 |
CODEC_ID_HUFFYUV, |
| ... | ... |
@@ -1432,7 +1432,7 @@ AVCodec huffyuv_decoder = {
|
| 1432 | 1432 |
#endif |
| 1433 | 1433 |
|
| 1434 | 1434 |
#if CONFIG_FFVHUFF_DECODER |
| 1435 |
-AVCodec ffvhuff_decoder = {
|
|
| 1435 |
+AVCodec ff_ffvhuff_decoder = {
|
|
| 1436 | 1436 |
"ffvhuff", |
| 1437 | 1437 |
AVMEDIA_TYPE_VIDEO, |
| 1438 | 1438 |
CODEC_ID_FFVHUFF, |
| ... | ... |
@@ -1448,7 +1448,7 @@ AVCodec ffvhuff_decoder = {
|
| 1448 | 1448 |
#endif |
| 1449 | 1449 |
|
| 1450 | 1450 |
#if CONFIG_HUFFYUV_ENCODER |
| 1451 |
-AVCodec huffyuv_encoder = {
|
|
| 1451 |
+AVCodec ff_huffyuv_encoder = {
|
|
| 1452 | 1452 |
"huffyuv", |
| 1453 | 1453 |
AVMEDIA_TYPE_VIDEO, |
| 1454 | 1454 |
CODEC_ID_HUFFYUV, |
| ... | ... |
@@ -1462,7 +1462,7 @@ AVCodec huffyuv_encoder = {
|
| 1462 | 1462 |
#endif |
| 1463 | 1463 |
|
| 1464 | 1464 |
#if CONFIG_FFVHUFF_ENCODER |
| 1465 |
-AVCodec ffvhuff_encoder = {
|
|
| 1465 |
+AVCodec ff_ffvhuff_encoder = {
|
|
| 1466 | 1466 |
"ffvhuff", |
| 1467 | 1467 |
AVMEDIA_TYPE_VIDEO, |
| 1468 | 1468 |
CODEC_ID_FFVHUFF, |
| ... | ... |
@@ -367,7 +367,7 @@ static av_cold int decode_end(AVCodecContext *avctx) |
| 367 | 367 |
return 0; |
| 368 | 368 |
} |
| 369 | 369 |
|
| 370 |
-AVCodec iff_ilbm_decoder = {
|
|
| 370 |
+AVCodec ff_iff_ilbm_decoder = {
|
|
| 371 | 371 |
"iff_ilbm", |
| 372 | 372 |
AVMEDIA_TYPE_VIDEO, |
| 373 | 373 |
CODEC_ID_IFF_ILBM, |
| ... | ... |
@@ -380,7 +380,7 @@ AVCodec iff_ilbm_decoder = {
|
| 380 | 380 |
.long_name = NULL_IF_CONFIG_SMALL("IFF ILBM"),
|
| 381 | 381 |
}; |
| 382 | 382 |
|
| 383 |
-AVCodec iff_byterun1_decoder = {
|
|
| 383 |
+AVCodec ff_iff_byterun1_decoder = {
|
|
| 384 | 384 |
"iff_byterun1", |
| 385 | 385 |
AVMEDIA_TYPE_VIDEO, |
| 386 | 386 |
CODEC_ID_IFF_BYTERUN1, |
| ... | ... |
@@ -1097,7 +1097,7 @@ static av_cold int ipvideo_decode_end(AVCodecContext *avctx) |
| 1097 | 1097 |
return 0; |
| 1098 | 1098 |
} |
| 1099 | 1099 |
|
| 1100 |
-AVCodec interplay_video_decoder = {
|
|
| 1100 |
+AVCodec ff_interplay_video_decoder = {
|
|
| 1101 | 1101 |
"interplayvideo", |
| 1102 | 1102 |
AVMEDIA_TYPE_VIDEO, |
| 1103 | 1103 |
CODEC_ID_INTERPLAY_VIDEO, |
| ... | ... |
@@ -382,7 +382,7 @@ static av_cold int encode_init_ls(AVCodecContext *ctx) {
|
| 382 | 382 |
return 0; |
| 383 | 383 |
} |
| 384 | 384 |
|
| 385 |
-AVCodec jpegls_encoder = { //FIXME avoid MPV_* lossless JPEG should not need them
|
|
| 385 |
+AVCodec ff_jpegls_encoder = { //FIXME avoid MPV_* lossless JPEG should not need them
|
|
| 386 | 386 |
"jpegls", |
| 387 | 387 |
AVMEDIA_TYPE_VIDEO, |
| 388 | 388 |
CODEC_ID_JPEGLS, |
| ... | ... |
@@ -609,7 +609,7 @@ static av_cold int decode_end(AVCodecContext *avctx) |
| 609 | 609 |
} |
| 610 | 610 |
|
| 611 | 611 |
#if CONFIG_MSZH_DECODER |
| 612 |
-AVCodec mszh_decoder = {
|
|
| 612 |
+AVCodec ff_mszh_decoder = {
|
|
| 613 | 613 |
"mszh", |
| 614 | 614 |
AVMEDIA_TYPE_VIDEO, |
| 615 | 615 |
CODEC_ID_MSZH, |
| ... | ... |
@@ -624,7 +624,7 @@ AVCodec mszh_decoder = {
|
| 624 | 624 |
#endif |
| 625 | 625 |
|
| 626 | 626 |
#if CONFIG_ZLIB_DECODER |
| 627 |
-AVCodec zlib_decoder = {
|
|
| 627 |
+AVCodec ff_zlib_decoder = {
|
|
| 628 | 628 |
"zlib", |
| 629 | 629 |
AVMEDIA_TYPE_VIDEO, |
| 630 | 630 |
CODEC_ID_ZLIB, |
| ... | ... |
@@ -112,7 +112,7 @@ static int libgsm_encode_frame(AVCodecContext *avctx, |
| 112 | 112 |
} |
| 113 | 113 |
|
| 114 | 114 |
|
| 115 |
-AVCodec libgsm_encoder = {
|
|
| 115 |
+AVCodec ff_libgsm_encoder = {
|
|
| 116 | 116 |
"libgsm", |
| 117 | 117 |
AVMEDIA_TYPE_AUDIO, |
| 118 | 118 |
CODEC_ID_GSM, |
| ... | ... |
@@ -124,7 +124,7 @@ AVCodec libgsm_encoder = {
|
| 124 | 124 |
.long_name = NULL_IF_CONFIG_SMALL("libgsm GSM"),
|
| 125 | 125 |
}; |
| 126 | 126 |
|
| 127 |
-AVCodec libgsm_ms_encoder = {
|
|
| 127 |
+AVCodec ff_libgsm_ms_encoder = {
|
|
| 128 | 128 |
"libgsm_ms", |
| 129 | 129 |
AVMEDIA_TYPE_AUDIO, |
| 130 | 130 |
CODEC_ID_GSM_MS, |
| ... | ... |
@@ -156,7 +156,7 @@ static int libgsm_decode_frame(AVCodecContext *avctx, |
| 156 | 156 |
return avctx->block_align; |
| 157 | 157 |
} |
| 158 | 158 |
|
| 159 |
-AVCodec libgsm_decoder = {
|
|
| 159 |
+AVCodec ff_libgsm_decoder = {
|
|
| 160 | 160 |
"libgsm", |
| 161 | 161 |
AVMEDIA_TYPE_AUDIO, |
| 162 | 162 |
CODEC_ID_GSM, |
| ... | ... |
@@ -168,7 +168,7 @@ AVCodec libgsm_decoder = {
|
| 168 | 168 |
.long_name = NULL_IF_CONFIG_SMALL("libgsm GSM"),
|
| 169 | 169 |
}; |
| 170 | 170 |
|
| 171 |
-AVCodec libgsm_ms_decoder = {
|
|
| 171 |
+AVCodec ff_libgsm_ms_decoder = {
|
|
| 172 | 172 |
"libgsm_ms", |
| 173 | 173 |
AVMEDIA_TYPE_AUDIO, |
| 174 | 174 |
CODEC_ID_GSM_MS, |
| ... | ... |
@@ -139,7 +139,7 @@ static int amr_nb_decode_frame(AVCodecContext *avctx, void *data, |
| 139 | 139 |
return packet_size; |
| 140 | 140 |
} |
| 141 | 141 |
|
| 142 |
-AVCodec libopencore_amrnb_decoder = {
|
|
| 142 |
+AVCodec ff_libopencore_amrnb_decoder = {
|
|
| 143 | 143 |
"libopencore_amrnb", |
| 144 | 144 |
AVMEDIA_TYPE_AUDIO, |
| 145 | 145 |
CODEC_ID_AMR_NB, |
| ... | ... |
@@ -213,7 +213,7 @@ static int amr_nb_encode_frame(AVCodecContext *avctx, |
| 213 | 213 |
return written; |
| 214 | 214 |
} |
| 215 | 215 |
|
| 216 |
-AVCodec libopencore_amrnb_encoder = {
|
|
| 216 |
+AVCodec ff_libopencore_amrnb_encoder = {
|
|
| 217 | 217 |
"libopencore_amrnb", |
| 218 | 218 |
AVMEDIA_TYPE_AUDIO, |
| 219 | 219 |
CODEC_ID_AMR_NB, |
| ... | ... |
@@ -310,7 +310,7 @@ static int amr_wb_decode_close(AVCodecContext *avctx) |
| 310 | 310 |
return 0; |
| 311 | 311 |
} |
| 312 | 312 |
|
| 313 |
-AVCodec libopencore_amrwb_decoder = {
|
|
| 313 |
+AVCodec ff_libopencore_amrwb_decoder = {
|
|
| 314 | 314 |
"libopencore_amrwb", |
| 315 | 315 |
AVMEDIA_TYPE_AUDIO, |
| 316 | 316 |
CODEC_ID_AMR_WB, |
| ... | ... |
@@ -346,7 +346,7 @@ static void libschroedinger_flush(AVCodecContext *avccontext) |
| 346 | 346 |
p_schro_params->eos_signalled = 0; |
| 347 | 347 |
} |
| 348 | 348 |
|
| 349 |
-AVCodec libschroedinger_decoder = {
|
|
| 349 |
+AVCodec ff_libschroedinger_decoder = {
|
|
| 350 | 350 |
"libschroedinger", |
| 351 | 351 |
AVMEDIA_TYPE_VIDEO, |
| 352 | 352 |
CODEC_ID_DIRAC, |
| ... | ... |
@@ -357,7 +357,7 @@ static av_cold int encode_close(AVCodecContext* avc_context) |
| 357 | 357 |
} |
| 358 | 358 |
|
| 359 | 359 |
/** AVCodec struct exposed to libavcodec */ |
| 360 |
-AVCodec libtheora_encoder = {
|
|
| 360 |
+AVCodec ff_libtheora_encoder = {
|
|
| 361 | 361 |
.name = "libtheora", |
| 362 | 362 |
.type = AVMEDIA_TYPE_VIDEO, |
| 363 | 363 |
.id = CODEC_ID_THEORA, |
| ... | ... |
@@ -186,7 +186,7 @@ static int encode_picture_lossless(AVCodecContext *avctx, unsigned char *buf, in |
| 186 | 186 |
} |
| 187 | 187 |
|
| 188 | 188 |
|
| 189 |
-AVCodec ljpeg_encoder = { //FIXME avoid MPV_* lossless JPEG should not need them
|
|
| 189 |
+AVCodec ff_ljpeg_encoder = { //FIXME avoid MPV_* lossless JPEG should not need them
|
|
| 190 | 190 |
"ljpeg", |
| 191 | 191 |
AVMEDIA_TYPE_VIDEO, |
| 192 | 192 |
CODEC_ID_LJPEG, |
| ... | ... |
@@ -279,7 +279,7 @@ static int mace_decode_frame(AVCodecContext *avctx, |
| 279 | 279 |
return buf_size; |
| 280 | 280 |
} |
| 281 | 281 |
|
| 282 |
-AVCodec mace3_decoder = {
|
|
| 282 |
+AVCodec ff_mace3_decoder = {
|
|
| 283 | 283 |
"mace3", |
| 284 | 284 |
AVMEDIA_TYPE_AUDIO, |
| 285 | 285 |
CODEC_ID_MACE3, |
| ... | ... |
@@ -291,7 +291,7 @@ AVCodec mace3_decoder = {
|
| 291 | 291 |
.long_name = NULL_IF_CONFIG_SMALL("MACE (Macintosh Audio Compression/Expansion) 3:1"),
|
| 292 | 292 |
}; |
| 293 | 293 |
|
| 294 |
-AVCodec mace6_decoder = {
|
|
| 294 |
+AVCodec ff_mace6_decoder = {
|
|
| 295 | 295 |
"mace6", |
| 296 | 296 |
AVMEDIA_TYPE_AUDIO, |
| 297 | 297 |
CODEC_ID_MACE6, |
| ... | ... |
@@ -106,7 +106,7 @@ static int mjpeg2jpeg_filter(AVBitStreamFilterContext *bsfc, |
| 106 | 106 |
return 1; |
| 107 | 107 |
} |
| 108 | 108 |
|
| 109 |
-AVBitStreamFilter mjpeg2jpeg_bsf = {
|
|
| 109 |
+AVBitStreamFilter ff_mjpeg2jpeg_bsf = {
|
|
| 110 | 110 |
.name = "mjpeg2jpeg", |
| 111 | 111 |
.priv_data_size = 0, |
| 112 | 112 |
.filter = mjpeg2jpeg_filter, |
| ... | ... |
@@ -1536,7 +1536,7 @@ av_cold int ff_mjpeg_decode_end(AVCodecContext *avctx) |
| 1536 | 1536 |
return 0; |
| 1537 | 1537 |
} |
| 1538 | 1538 |
|
| 1539 |
-AVCodec mjpeg_decoder = {
|
|
| 1539 |
+AVCodec ff_mjpeg_decoder = {
|
|
| 1540 | 1540 |
"mjpeg", |
| 1541 | 1541 |
AVMEDIA_TYPE_VIDEO, |
| 1542 | 1542 |
CODEC_ID_MJPEG, |
| ... | ... |
@@ -1551,7 +1551,7 @@ AVCodec mjpeg_decoder = {
|
| 1551 | 1551 |
.long_name = NULL_IF_CONFIG_SMALL("MJPEG (Motion JPEG)"),
|
| 1552 | 1552 |
}; |
| 1553 | 1553 |
|
| 1554 |
-AVCodec thp_decoder = {
|
|
| 1554 |
+AVCodec ff_thp_decoder = {
|
|
| 1555 | 1555 |
"thp", |
| 1556 | 1556 |
AVMEDIA_TYPE_VIDEO, |
| 1557 | 1557 |
CODEC_ID_THP, |
| ... | ... |
@@ -1137,7 +1137,7 @@ error: |
| 1137 | 1137 |
return -1; |
| 1138 | 1138 |
} |
| 1139 | 1139 |
|
| 1140 |
-AVCodec mlp_decoder = {
|
|
| 1140 |
+AVCodec ff_mlp_decoder = {
|
|
| 1141 | 1141 |
"mlp", |
| 1142 | 1142 |
AVMEDIA_TYPE_AUDIO, |
| 1143 | 1143 |
CODEC_ID_MLP, |
| ... | ... |
@@ -1150,7 +1150,7 @@ AVCodec mlp_decoder = {
|
| 1150 | 1150 |
}; |
| 1151 | 1151 |
|
| 1152 | 1152 |
#if CONFIG_TRUEHD_DECODER |
| 1153 |
-AVCodec truehd_decoder = {
|
|
| 1153 |
+AVCodec ff_truehd_decoder = {
|
|
| 1154 | 1154 |
"truehd", |
| 1155 | 1155 |
AVMEDIA_TYPE_AUDIO, |
| 1156 | 1156 |
CODEC_ID_TRUEHD, |
| ... | ... |
@@ -33,7 +33,7 @@ static int text2movsub(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, co |
| 33 | 33 |
return 1; |
| 34 | 34 |
} |
| 35 | 35 |
|
| 36 |
-AVBitStreamFilter text2movsub_bsf={
|
|
| 36 |
+AVBitStreamFilter ff_text2movsub_bsf={
|
|
| 37 | 37 |
"text2movsub", |
| 38 | 38 |
0, |
| 39 | 39 |
text2movsub, |
| ... | ... |
@@ -49,7 +49,7 @@ static int mov2textsub(AVBitStreamFilterContext *bsfc, AVCodecContext *avctx, co |
| 49 | 49 |
return 1; |
| 50 | 50 |
} |
| 51 | 51 |
|
| 52 |
-AVBitStreamFilter mov2textsub_bsf={
|
|
| 52 |
+AVBitStreamFilter ff_mov2textsub_bsf={
|
|
| 53 | 53 |
"mov2textsub", |
| 54 | 54 |
0, |
| 55 | 55 |
mov2textsub, |
| ... | ... |
@@ -2471,7 +2471,7 @@ static int mpeg_decode_end(AVCodecContext *avctx) |
| 2471 | 2471 |
return 0; |
| 2472 | 2472 |
} |
| 2473 | 2473 |
|
| 2474 |
-AVCodec mpeg1video_decoder = {
|
|
| 2474 |
+AVCodec ff_mpeg1video_decoder = {
|
|
| 2475 | 2475 |
"mpeg1video", |
| 2476 | 2476 |
AVMEDIA_TYPE_VIDEO, |
| 2477 | 2477 |
CODEC_ID_MPEG1VIDEO, |
| ... | ... |
@@ -2486,7 +2486,7 @@ AVCodec mpeg1video_decoder = {
|
| 2486 | 2486 |
.long_name= NULL_IF_CONFIG_SMALL("MPEG-1 video"),
|
| 2487 | 2487 |
}; |
| 2488 | 2488 |
|
| 2489 |
-AVCodec mpeg2video_decoder = {
|
|
| 2489 |
+AVCodec ff_mpeg2video_decoder = {
|
|
| 2490 | 2490 |
"mpeg2video", |
| 2491 | 2491 |
AVMEDIA_TYPE_VIDEO, |
| 2492 | 2492 |
CODEC_ID_MPEG2VIDEO, |
| ... | ... |
@@ -2502,7 +2502,7 @@ AVCodec mpeg2video_decoder = {
|
| 2502 | 2502 |
}; |
| 2503 | 2503 |
|
| 2504 | 2504 |
//legacy decoder |
| 2505 |
-AVCodec mpegvideo_decoder = {
|
|
| 2505 |
+AVCodec ff_mpegvideo_decoder = {
|
|
| 2506 | 2506 |
"mpegvideo", |
| 2507 | 2507 |
AVMEDIA_TYPE_VIDEO, |
| 2508 | 2508 |
CODEC_ID_MPEG2VIDEO, |
| ... | ... |
@@ -2534,7 +2534,7 @@ static av_cold int mpeg_mc_decode_init(AVCodecContext *avctx){
|
| 2534 | 2534 |
return 0; |
| 2535 | 2535 |
} |
| 2536 | 2536 |
|
| 2537 |
-AVCodec mpeg_xvmc_decoder = {
|
|
| 2537 |
+AVCodec ff_mpeg_xvmc_decoder = {
|
|
| 2538 | 2538 |
"mpegvideo_xvmc", |
| 2539 | 2539 |
AVMEDIA_TYPE_VIDEO, |
| 2540 | 2540 |
CODEC_ID_MPEG2VIDEO_XVMC, |
| ... | ... |
@@ -2551,7 +2551,7 @@ AVCodec mpeg_xvmc_decoder = {
|
| 2551 | 2551 |
#endif |
| 2552 | 2552 |
|
| 2553 | 2553 |
#if CONFIG_MPEG_VDPAU_DECODER |
| 2554 |
-AVCodec mpeg_vdpau_decoder = {
|
|
| 2554 |
+AVCodec ff_mpeg_vdpau_decoder = {
|
|
| 2555 | 2555 |
"mpegvideo_vdpau", |
| 2556 | 2556 |
AVMEDIA_TYPE_VIDEO, |
| 2557 | 2557 |
CODEC_ID_MPEG2VIDEO, |
| ... | ... |
@@ -2567,7 +2567,7 @@ AVCodec mpeg_vdpau_decoder = {
|
| 2567 | 2567 |
#endif |
| 2568 | 2568 |
|
| 2569 | 2569 |
#if CONFIG_MPEG1_VDPAU_DECODER |
| 2570 |
-AVCodec mpeg1_vdpau_decoder = {
|
|
| 2570 |
+AVCodec ff_mpeg1_vdpau_decoder = {
|
|
| 2571 | 2571 |
"mpeg1video_vdpau", |
| 2572 | 2572 |
AVMEDIA_TYPE_VIDEO, |
| 2573 | 2573 |
CODEC_ID_MPEG1VIDEO, |
| ... | ... |
@@ -930,7 +930,7 @@ static void mpeg1_encode_block(MpegEncContext *s, |
| 930 | 930 |
put_bits(&s->pb, table_vlc[112][1], table_vlc[112][0]); |
| 931 | 931 |
} |
| 932 | 932 |
|
| 933 |
-AVCodec mpeg1video_encoder = {
|
|
| 933 |
+AVCodec ff_mpeg1video_encoder = {
|
|
| 934 | 934 |
"mpeg1video", |
| 935 | 935 |
AVMEDIA_TYPE_VIDEO, |
| 936 | 936 |
CODEC_ID_MPEG1VIDEO, |
| ... | ... |
@@ -944,7 +944,7 @@ AVCodec mpeg1video_encoder = {
|
| 944 | 944 |
.long_name= NULL_IF_CONFIG_SMALL("MPEG-1 video"),
|
| 945 | 945 |
}; |
| 946 | 946 |
|
| 947 |
-AVCodec mpeg2video_encoder = {
|
|
| 947 |
+AVCodec ff_mpeg2video_encoder = {
|
|
| 948 | 948 |
"mpeg2video", |
| 949 | 949 |
AVMEDIA_TYPE_VIDEO, |
| 950 | 950 |
CODEC_ID_MPEG2VIDEO, |
| ... | ... |
@@ -2225,7 +2225,7 @@ static av_cold int decode_init(AVCodecContext *avctx) |
| 2225 | 2225 |
return 0; |
| 2226 | 2226 |
} |
| 2227 | 2227 |
|
| 2228 |
-AVCodec mpeg4_decoder = {
|
|
| 2228 |
+AVCodec ff_mpeg4_decoder = {
|
|
| 2229 | 2229 |
"mpeg4", |
| 2230 | 2230 |
AVMEDIA_TYPE_VIDEO, |
| 2231 | 2231 |
CODEC_ID_MPEG4, |
| ... | ... |
@@ -2243,7 +2243,7 @@ AVCodec mpeg4_decoder = {
|
| 2243 | 2243 |
|
| 2244 | 2244 |
|
| 2245 | 2245 |
#if CONFIG_MPEG4_VDPAU_DECODER |
| 2246 |
-AVCodec mpeg4_vdpau_decoder = {
|
|
| 2246 |
+AVCodec ff_mpeg4_vdpau_decoder = {
|
|
| 2247 | 2247 |
"mpeg4_vdpau", |
| 2248 | 2248 |
AVMEDIA_TYPE_VIDEO, |
| 2249 | 2249 |
CODEC_ID_MPEG4, |
| ... | ... |
@@ -1338,7 +1338,7 @@ void ff_mpeg4_encode_video_packet_header(MpegEncContext *s) |
| 1338 | 1338 |
put_bits(&s->pb, 1, 0); /* no HEC */ |
| 1339 | 1339 |
} |
| 1340 | 1340 |
|
| 1341 |
-AVCodec mpeg4_encoder = {
|
|
| 1341 |
+AVCodec ff_mpeg4_encoder = {
|
|
| 1342 | 1342 |
"mpeg4", |
| 1343 | 1343 |
AVMEDIA_TYPE_VIDEO, |
| 1344 | 1344 |
CODEC_ID_MPEG4, |
| ... | ... |
@@ -2308,7 +2308,7 @@ static int decode_frame_mp3on4(AVCodecContext * avctx, |
| 2308 | 2308 |
|
| 2309 | 2309 |
#if !CONFIG_FLOAT |
| 2310 | 2310 |
#if CONFIG_MP1_DECODER |
| 2311 |
-AVCodec mp1_decoder = |
|
| 2311 |
+AVCodec ff_mp1_decoder = |
|
| 2312 | 2312 |
{
|
| 2313 | 2313 |
"mp1", |
| 2314 | 2314 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -2324,7 +2324,7 @@ AVCodec mp1_decoder = |
| 2324 | 2324 |
}; |
| 2325 | 2325 |
#endif |
| 2326 | 2326 |
#if CONFIG_MP2_DECODER |
| 2327 |
-AVCodec mp2_decoder = |
|
| 2327 |
+AVCodec ff_mp2_decoder = |
|
| 2328 | 2328 |
{
|
| 2329 | 2329 |
"mp2", |
| 2330 | 2330 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -2340,7 +2340,7 @@ AVCodec mp2_decoder = |
| 2340 | 2340 |
}; |
| 2341 | 2341 |
#endif |
| 2342 | 2342 |
#if CONFIG_MP3_DECODER |
| 2343 |
-AVCodec mp3_decoder = |
|
| 2343 |
+AVCodec ff_mp3_decoder = |
|
| 2344 | 2344 |
{
|
| 2345 | 2345 |
"mp3", |
| 2346 | 2346 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -2356,7 +2356,7 @@ AVCodec mp3_decoder = |
| 2356 | 2356 |
}; |
| 2357 | 2357 |
#endif |
| 2358 | 2358 |
#if CONFIG_MP3ADU_DECODER |
| 2359 |
-AVCodec mp3adu_decoder = |
|
| 2359 |
+AVCodec ff_mp3adu_decoder = |
|
| 2360 | 2360 |
{
|
| 2361 | 2361 |
"mp3adu", |
| 2362 | 2362 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -2372,7 +2372,7 @@ AVCodec mp3adu_decoder = |
| 2372 | 2372 |
}; |
| 2373 | 2373 |
#endif |
| 2374 | 2374 |
#if CONFIG_MP3ON4_DECODER |
| 2375 |
-AVCodec mp3on4_decoder = |
|
| 2375 |
+AVCodec ff_mp3on4_decoder = |
|
| 2376 | 2376 |
{
|
| 2377 | 2377 |
"mp3on4", |
| 2378 | 2378 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -88,7 +88,7 @@ static av_cold int decode_end(AVCodecContext * avctx) |
| 88 | 88 |
} |
| 89 | 89 |
|
| 90 | 90 |
#if CONFIG_MP1FLOAT_DECODER |
| 91 |
-AVCodec mp1float_decoder = |
|
| 91 |
+AVCodec ff_mp1float_decoder = |
|
| 92 | 92 |
{
|
| 93 | 93 |
"mp1float", |
| 94 | 94 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -104,7 +104,7 @@ AVCodec mp1float_decoder = |
| 104 | 104 |
}; |
| 105 | 105 |
#endif |
| 106 | 106 |
#if CONFIG_MP2FLOAT_DECODER |
| 107 |
-AVCodec mp2float_decoder = |
|
| 107 |
+AVCodec ff_mp2float_decoder = |
|
| 108 | 108 |
{
|
| 109 | 109 |
"mp2float", |
| 110 | 110 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -120,7 +120,7 @@ AVCodec mp2float_decoder = |
| 120 | 120 |
}; |
| 121 | 121 |
#endif |
| 122 | 122 |
#if CONFIG_MP3FLOAT_DECODER |
| 123 |
-AVCodec mp3float_decoder = |
|
| 123 |
+AVCodec ff_mp3float_decoder = |
|
| 124 | 124 |
{
|
| 125 | 125 |
"mp3float", |
| 126 | 126 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -136,7 +136,7 @@ AVCodec mp3float_decoder = |
| 136 | 136 |
}; |
| 137 | 137 |
#endif |
| 138 | 138 |
#if CONFIG_MP3ADUFLOAT_DECODER |
| 139 |
-AVCodec mp3adufloat_decoder = |
|
| 139 |
+AVCodec ff_mp3adufloat_decoder = |
|
| 140 | 140 |
{
|
| 141 | 141 |
"mp3adufloat", |
| 142 | 142 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -152,7 +152,7 @@ AVCodec mp3adufloat_decoder = |
| 152 | 152 |
}; |
| 153 | 153 |
#endif |
| 154 | 154 |
#if CONFIG_MP3ON4FLOAT_DECODER |
| 155 |
-AVCodec mp3on4float_decoder = |
|
| 155 |
+AVCodec ff_mp3on4float_decoder = |
|
| 156 | 156 |
{
|
| 157 | 157 |
"mp3on4float", |
| 158 | 158 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -3779,7 +3779,7 @@ int dct_quantize_c(MpegEncContext *s, |
| 3779 | 3779 |
return last_non_zero; |
| 3780 | 3780 |
} |
| 3781 | 3781 |
|
| 3782 |
-AVCodec h263_encoder = {
|
|
| 3782 |
+AVCodec ff_h263_encoder = {
|
|
| 3783 | 3783 |
"h263", |
| 3784 | 3784 |
AVMEDIA_TYPE_VIDEO, |
| 3785 | 3785 |
CODEC_ID_H263, |
| ... | ... |
@@ -3791,7 +3791,7 @@ AVCodec h263_encoder = {
|
| 3791 | 3791 |
.long_name= NULL_IF_CONFIG_SMALL("H.263 / H.263-1996"),
|
| 3792 | 3792 |
}; |
| 3793 | 3793 |
|
| 3794 |
-AVCodec h263p_encoder = {
|
|
| 3794 |
+AVCodec ff_h263p_encoder = {
|
|
| 3795 | 3795 |
"h263p", |
| 3796 | 3796 |
AVMEDIA_TYPE_VIDEO, |
| 3797 | 3797 |
CODEC_ID_H263P, |
| ... | ... |
@@ -3803,7 +3803,7 @@ AVCodec h263p_encoder = {
|
| 3803 | 3803 |
.long_name= NULL_IF_CONFIG_SMALL("H.263+ / H.263-1998 / H.263 version 2"),
|
| 3804 | 3804 |
}; |
| 3805 | 3805 |
|
| 3806 |
-AVCodec msmpeg4v1_encoder = {
|
|
| 3806 |
+AVCodec ff_msmpeg4v1_encoder = {
|
|
| 3807 | 3807 |
"msmpeg4v1", |
| 3808 | 3808 |
AVMEDIA_TYPE_VIDEO, |
| 3809 | 3809 |
CODEC_ID_MSMPEG4V1, |
| ... | ... |
@@ -3815,7 +3815,7 @@ AVCodec msmpeg4v1_encoder = {
|
| 3815 | 3815 |
.long_name= NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 1"),
|
| 3816 | 3816 |
}; |
| 3817 | 3817 |
|
| 3818 |
-AVCodec msmpeg4v2_encoder = {
|
|
| 3818 |
+AVCodec ff_msmpeg4v2_encoder = {
|
|
| 3819 | 3819 |
"msmpeg4v2", |
| 3820 | 3820 |
AVMEDIA_TYPE_VIDEO, |
| 3821 | 3821 |
CODEC_ID_MSMPEG4V2, |
| ... | ... |
@@ -3827,7 +3827,7 @@ AVCodec msmpeg4v2_encoder = {
|
| 3827 | 3827 |
.long_name= NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 2"),
|
| 3828 | 3828 |
}; |
| 3829 | 3829 |
|
| 3830 |
-AVCodec msmpeg4v3_encoder = {
|
|
| 3830 |
+AVCodec ff_msmpeg4v3_encoder = {
|
|
| 3831 | 3831 |
"msmpeg4", |
| 3832 | 3832 |
AVMEDIA_TYPE_VIDEO, |
| 3833 | 3833 |
CODEC_ID_MSMPEG4V3, |
| ... | ... |
@@ -3839,7 +3839,7 @@ AVCodec msmpeg4v3_encoder = {
|
| 3839 | 3839 |
.long_name= NULL_IF_CONFIG_SMALL("MPEG-4 part 2 Microsoft variant version 3"),
|
| 3840 | 3840 |
}; |
| 3841 | 3841 |
|
| 3842 |
-AVCodec wmv1_encoder = {
|
|
| 3842 |
+AVCodec ff_wmv1_encoder = {
|
|
| 3843 | 3843 |
"wmv1", |
| 3844 | 3844 |
AVMEDIA_TYPE_VIDEO, |
| 3845 | 3845 |
CODEC_ID_WMV1, |
| ... | ... |
@@ -1908,7 +1908,7 @@ int ff_msmpeg4_decode_motion(MpegEncContext * s, |
| 1908 | 1908 |
return 0; |
| 1909 | 1909 |
} |
| 1910 | 1910 |
|
| 1911 |
-AVCodec msmpeg4v1_decoder = {
|
|
| 1911 |
+AVCodec ff_msmpeg4v1_decoder = {
|
|
| 1912 | 1912 |
"msmpeg4v1", |
| 1913 | 1913 |
AVMEDIA_TYPE_VIDEO, |
| 1914 | 1914 |
CODEC_ID_MSMPEG4V1, |
| ... | ... |
@@ -1923,7 +1923,7 @@ AVCodec msmpeg4v1_decoder = {
|
| 1923 | 1923 |
.pix_fmts= ff_pixfmt_list_420, |
| 1924 | 1924 |
}; |
| 1925 | 1925 |
|
| 1926 |
-AVCodec msmpeg4v2_decoder = {
|
|
| 1926 |
+AVCodec ff_msmpeg4v2_decoder = {
|
|
| 1927 | 1927 |
"msmpeg4v2", |
| 1928 | 1928 |
AVMEDIA_TYPE_VIDEO, |
| 1929 | 1929 |
CODEC_ID_MSMPEG4V2, |
| ... | ... |
@@ -1938,7 +1938,7 @@ AVCodec msmpeg4v2_decoder = {
|
| 1938 | 1938 |
.pix_fmts= ff_pixfmt_list_420, |
| 1939 | 1939 |
}; |
| 1940 | 1940 |
|
| 1941 |
-AVCodec msmpeg4v3_decoder = {
|
|
| 1941 |
+AVCodec ff_msmpeg4v3_decoder = {
|
|
| 1942 | 1942 |
"msmpeg4", |
| 1943 | 1943 |
AVMEDIA_TYPE_VIDEO, |
| 1944 | 1944 |
CODEC_ID_MSMPEG4V3, |
| ... | ... |
@@ -1953,7 +1953,7 @@ AVCodec msmpeg4v3_decoder = {
|
| 1953 | 1953 |
.pix_fmts= ff_pixfmt_list_420, |
| 1954 | 1954 |
}; |
| 1955 | 1955 |
|
| 1956 |
-AVCodec wmv1_decoder = {
|
|
| 1956 |
+AVCodec ff_wmv1_decoder = {
|
|
| 1957 | 1957 |
"wmv1", |
| 1958 | 1958 |
AVMEDIA_TYPE_VIDEO, |
| 1959 | 1959 |
CODEC_ID_WMV1, |
| ... | ... |
@@ -382,7 +382,7 @@ static int encode_frame(AVCodecContext *avctx, uint8_t *frame, int buf_size, voi |
| 382 | 382 |
return 0; |
| 383 | 383 |
} |
| 384 | 384 |
|
| 385 |
-AVCodec nellymoser_encoder = {
|
|
| 385 |
+AVCodec ff_nellymoser_encoder = {
|
|
| 386 | 386 |
.name = "nellymoser", |
| 387 | 387 |
.type = AVMEDIA_TYPE_AUDIO, |
| 388 | 388 |
.id = CODEC_ID_NELLYMOSER, |
| ... | ... |
@@ -473,7 +473,7 @@ static int pcm_decode_frame(AVCodecContext *avctx, |
| 473 | 473 |
|
| 474 | 474 |
#if CONFIG_ENCODERS |
| 475 | 475 |
#define PCM_ENCODER(id_,sample_fmt_,name_,long_name_) \ |
| 476 |
-AVCodec name_ ## _encoder = { \
|
|
| 476 |
+AVCodec ff_ ## name_ ## _encoder = { \
|
|
| 477 | 477 |
.name = #name_, \ |
| 478 | 478 |
.type = AVMEDIA_TYPE_AUDIO, \ |
| 479 | 479 |
.id = id_, \ |
| ... | ... |
@@ -489,7 +489,7 @@ AVCodec name_ ## _encoder = { \
|
| 489 | 489 |
|
| 490 | 490 |
#if CONFIG_DECODERS |
| 491 | 491 |
#define PCM_DECODER(id_,sample_fmt_,name_,long_name_) \ |
| 492 |
-AVCodec name_ ## _decoder = { \
|
|
| 492 |
+AVCodec ff_ ## name_ ## _decoder = { \
|
|
| 493 | 493 |
.name = #name_, \ |
| 494 | 494 |
.type = AVMEDIA_TYPE_AUDIO, \ |
| 495 | 495 |
.id = id_, \ |
| ... | ... |
@@ -188,7 +188,7 @@ static int pnm_decode_frame(AVCodecContext *avctx, void *data, |
| 188 | 188 |
|
| 189 | 189 |
|
| 190 | 190 |
#if CONFIG_PGM_DECODER |
| 191 |
-AVCodec pgm_decoder = {
|
|
| 191 |
+AVCodec ff_pgm_decoder = {
|
|
| 192 | 192 |
"pgm", |
| 193 | 193 |
AVMEDIA_TYPE_VIDEO, |
| 194 | 194 |
CODEC_ID_PGM, |
| ... | ... |
@@ -205,7 +205,7 @@ AVCodec pgm_decoder = {
|
| 205 | 205 |
#endif |
| 206 | 206 |
|
| 207 | 207 |
#if CONFIG_PGMYUV_DECODER |
| 208 |
-AVCodec pgmyuv_decoder = {
|
|
| 208 |
+AVCodec ff_pgmyuv_decoder = {
|
|
| 209 | 209 |
"pgmyuv", |
| 210 | 210 |
AVMEDIA_TYPE_VIDEO, |
| 211 | 211 |
CODEC_ID_PGMYUV, |
| ... | ... |
@@ -222,7 +222,7 @@ AVCodec pgmyuv_decoder = {
|
| 222 | 222 |
#endif |
| 223 | 223 |
|
| 224 | 224 |
#if CONFIG_PPM_DECODER |
| 225 |
-AVCodec ppm_decoder = {
|
|
| 225 |
+AVCodec ff_ppm_decoder = {
|
|
| 226 | 226 |
"ppm", |
| 227 | 227 |
AVMEDIA_TYPE_VIDEO, |
| 228 | 228 |
CODEC_ID_PPM, |
| ... | ... |
@@ -239,7 +239,7 @@ AVCodec ppm_decoder = {
|
| 239 | 239 |
#endif |
| 240 | 240 |
|
| 241 | 241 |
#if CONFIG_PBM_DECODER |
| 242 |
-AVCodec pbm_decoder = {
|
|
| 242 |
+AVCodec ff_pbm_decoder = {
|
|
| 243 | 243 |
"pbm", |
| 244 | 244 |
AVMEDIA_TYPE_VIDEO, |
| 245 | 245 |
CODEC_ID_PBM, |
| ... | ... |
@@ -256,7 +256,7 @@ AVCodec pbm_decoder = {
|
| 256 | 256 |
#endif |
| 257 | 257 |
|
| 258 | 258 |
#if CONFIG_PAM_DECODER |
| 259 |
-AVCodec pam_decoder = {
|
|
| 259 |
+AVCodec ff_pam_decoder = {
|
|
| 260 | 260 |
"pam", |
| 261 | 261 |
AVMEDIA_TYPE_VIDEO, |
| 262 | 262 |
CODEC_ID_PAM, |
| ... | ... |
@@ -113,7 +113,7 @@ static int pnm_encode_frame(AVCodecContext *avctx, unsigned char *outbuf, |
| 113 | 113 |
|
| 114 | 114 |
|
| 115 | 115 |
#if CONFIG_PGM_ENCODER |
| 116 |
-AVCodec pgm_encoder = {
|
|
| 116 |
+AVCodec ff_pgm_encoder = {
|
|
| 117 | 117 |
"pgm", |
| 118 | 118 |
AVMEDIA_TYPE_VIDEO, |
| 119 | 119 |
CODEC_ID_PGM, |
| ... | ... |
@@ -126,7 +126,7 @@ AVCodec pgm_encoder = {
|
| 126 | 126 |
#endif |
| 127 | 127 |
|
| 128 | 128 |
#if CONFIG_PGMYUV_ENCODER |
| 129 |
-AVCodec pgmyuv_encoder = {
|
|
| 129 |
+AVCodec ff_pgmyuv_encoder = {
|
|
| 130 | 130 |
"pgmyuv", |
| 131 | 131 |
AVMEDIA_TYPE_VIDEO, |
| 132 | 132 |
CODEC_ID_PGMYUV, |
| ... | ... |
@@ -139,7 +139,7 @@ AVCodec pgmyuv_encoder = {
|
| 139 | 139 |
#endif |
| 140 | 140 |
|
| 141 | 141 |
#if CONFIG_PPM_ENCODER |
| 142 |
-AVCodec ppm_encoder = {
|
|
| 142 |
+AVCodec ff_ppm_encoder = {
|
|
| 143 | 143 |
"ppm", |
| 144 | 144 |
AVMEDIA_TYPE_VIDEO, |
| 145 | 145 |
CODEC_ID_PPM, |
| ... | ... |
@@ -152,7 +152,7 @@ AVCodec ppm_encoder = {
|
| 152 | 152 |
#endif |
| 153 | 153 |
|
| 154 | 154 |
#if CONFIG_PBM_ENCODER |
| 155 |
-AVCodec pbm_encoder = {
|
|
| 155 |
+AVCodec ff_pbm_encoder = {
|
|
| 156 | 156 |
"pbm", |
| 157 | 157 |
AVMEDIA_TYPE_VIDEO, |
| 158 | 158 |
CODEC_ID_PBM, |
| ... | ... |
@@ -97,7 +97,7 @@ static av_cold int decode_close(AVCodecContext *avctx) |
| 97 | 97 |
} |
| 98 | 98 |
|
| 99 | 99 |
#if CONFIG_R210_DECODER |
| 100 |
-AVCodec r210_decoder = {
|
|
| 100 |
+AVCodec ff_r210_decoder = {
|
|
| 101 | 101 |
"r210", |
| 102 | 102 |
AVMEDIA_TYPE_VIDEO, |
| 103 | 103 |
CODEC_ID_R210, |
| ... | ... |
@@ -111,7 +111,7 @@ AVCodec r210_decoder = {
|
| 111 | 111 |
}; |
| 112 | 112 |
#endif |
| 113 | 113 |
#if CONFIG_R10K_DECODER |
| 114 |
-AVCodec r10k_decoder = {
|
|
| 114 |
+AVCodec ff_r10k_decoder = {
|
|
| 115 | 115 |
"r10k", |
| 116 | 116 |
AVMEDIA_TYPE_VIDEO, |
| 117 | 117 |
CODEC_ID_R10K, |
| ... | ... |
@@ -707,7 +707,7 @@ static int rv10_decode_frame(AVCodecContext *avctx, |
| 707 | 707 |
return buf_size; |
| 708 | 708 |
} |
| 709 | 709 |
|
| 710 |
-AVCodec rv10_decoder = {
|
|
| 710 |
+AVCodec ff_rv10_decoder = {
|
|
| 711 | 711 |
"rv10", |
| 712 | 712 |
AVMEDIA_TYPE_VIDEO, |
| 713 | 713 |
CODEC_ID_RV10, |
| ... | ... |
@@ -722,7 +722,7 @@ AVCodec rv10_decoder = {
|
| 722 | 722 |
.pix_fmts= ff_pixfmt_list_420, |
| 723 | 723 |
}; |
| 724 | 724 |
|
| 725 |
-AVCodec rv20_decoder = {
|
|
| 725 |
+AVCodec ff_rv20_decoder = {
|
|
| 726 | 726 |
"rv20", |
| 727 | 727 |
AVMEDIA_TYPE_VIDEO, |
| 728 | 728 |
CODEC_ID_RV20, |
| ... | ... |
@@ -689,7 +689,7 @@ static int smka_decode_frame(AVCodecContext *avctx, void *data, int *data_size, |
| 689 | 689 |
return buf_size; |
| 690 | 690 |
} |
| 691 | 691 |
|
| 692 |
-AVCodec smacker_decoder = {
|
|
| 692 |
+AVCodec ff_smacker_decoder = {
|
|
| 693 | 693 |
"smackvid", |
| 694 | 694 |
AVMEDIA_TYPE_VIDEO, |
| 695 | 695 |
CODEC_ID_SMACKVIDEO, |
| ... | ... |
@@ -702,7 +702,7 @@ AVCodec smacker_decoder = {
|
| 702 | 702 |
.long_name = NULL_IF_CONFIG_SMALL("Smacker video"),
|
| 703 | 703 |
}; |
| 704 | 704 |
|
| 705 |
-AVCodec smackaud_decoder = {
|
|
| 705 |
+AVCodec ff_smackaud_decoder = {
|
|
| 706 | 706 |
"smackaud", |
| 707 | 707 |
AVMEDIA_TYPE_AUDIO, |
| 708 | 708 |
CODEC_ID_SMACKAUDIO, |
| ... | ... |
@@ -2234,7 +2234,7 @@ static av_cold int decode_end(AVCodecContext *avctx) |
| 2234 | 2234 |
return 0; |
| 2235 | 2235 |
} |
| 2236 | 2236 |
|
| 2237 |
-AVCodec snow_decoder = {
|
|
| 2237 |
+AVCodec ff_snow_decoder = {
|
|
| 2238 | 2238 |
"snow", |
| 2239 | 2239 |
AVMEDIA_TYPE_VIDEO, |
| 2240 | 2240 |
CODEC_ID_SNOW, |
| ... | ... |
@@ -3985,7 +3985,7 @@ static av_cold int encode_end(AVCodecContext *avctx) |
| 3985 | 3985 |
return 0; |
| 3986 | 3986 |
} |
| 3987 | 3987 |
|
| 3988 |
-AVCodec snow_encoder = {
|
|
| 3988 |
+AVCodec ff_snow_encoder = {
|
|
| 3989 | 3989 |
"snow", |
| 3990 | 3990 |
AVMEDIA_TYPE_VIDEO, |
| 3991 | 3991 |
CODEC_ID_SNOW, |
| ... | ... |
@@ -935,7 +935,7 @@ static int sonic_decode_frame(AVCodecContext *avctx, |
| 935 | 935 |
return (get_bits_count(&gb)+7)/8; |
| 936 | 936 |
} |
| 937 | 937 |
|
| 938 |
-AVCodec sonic_decoder = {
|
|
| 938 |
+AVCodec ff_sonic_decoder = {
|
|
| 939 | 939 |
"sonic", |
| 940 | 940 |
AVMEDIA_TYPE_AUDIO, |
| 941 | 941 |
CODEC_ID_SONIC, |
| ... | ... |
@@ -949,7 +949,7 @@ AVCodec sonic_decoder = {
|
| 949 | 949 |
#endif /* CONFIG_SONIC_DECODER */ |
| 950 | 950 |
|
| 951 | 951 |
#if CONFIG_SONIC_ENCODER |
| 952 |
-AVCodec sonic_encoder = {
|
|
| 952 |
+AVCodec ff_sonic_encoder = {
|
|
| 953 | 953 |
"sonic", |
| 954 | 954 |
AVMEDIA_TYPE_AUDIO, |
| 955 | 955 |
CODEC_ID_SONIC, |
| ... | ... |
@@ -963,7 +963,7 @@ AVCodec sonic_encoder = {
|
| 963 | 963 |
#endif |
| 964 | 964 |
|
| 965 | 965 |
#if CONFIG_SONIC_LS_ENCODER |
| 966 |
-AVCodec sonic_ls_encoder = {
|
|
| 966 |
+AVCodec ff_sonic_ls_encoder = {
|
|
| 967 | 967 |
"sonicls", |
| 968 | 968 |
AVMEDIA_TYPE_AUDIO, |
| 969 | 969 |
CODEC_ID_SONIC_LS, |
| ... | ... |
@@ -97,7 +97,7 @@ static int sp5x_decode_frame(AVCodecContext *avctx, |
| 97 | 97 |
return i; |
| 98 | 98 |
} |
| 99 | 99 |
|
| 100 |
-AVCodec sp5x_decoder = {
|
|
| 100 |
+AVCodec ff_sp5x_decoder = {
|
|
| 101 | 101 |
"sp5x", |
| 102 | 102 |
AVMEDIA_TYPE_VIDEO, |
| 103 | 103 |
CODEC_ID_SP5X, |
| ... | ... |
@@ -112,7 +112,7 @@ AVCodec sp5x_decoder = {
|
| 112 | 112 |
.long_name = NULL_IF_CONFIG_SMALL("Sunplus JPEG (SP5X)"),
|
| 113 | 113 |
}; |
| 114 | 114 |
|
| 115 |
-AVCodec amv_decoder = {
|
|
| 115 |
+AVCodec ff_amv_decoder = {
|
|
| 116 | 116 |
"amv", |
| 117 | 117 |
AVMEDIA_TYPE_VIDEO, |
| 118 | 118 |
CODEC_ID_AMV, |
| ... | ... |
@@ -231,7 +231,7 @@ static int srt_decode_frame(AVCodecContext *avctx, |
| 231 | 231 |
return avpkt->size; |
| 232 | 232 |
} |
| 233 | 233 |
|
| 234 |
-AVCodec srt_decoder = {
|
|
| 234 |
+AVCodec ff_srt_decoder = {
|
|
| 235 | 235 |
.name = "srt", |
| 236 | 236 |
.long_name = NULL_IF_CONFIG_SMALL("SubRip subtitle"),
|
| 237 | 237 |
.type = AVMEDIA_TYPE_SUBTITLE, |
| ... | ... |
@@ -3345,7 +3345,7 @@ static av_cold int vc1_decode_end(AVCodecContext *avctx) |
| 3345 | 3345 |
} |
| 3346 | 3346 |
|
| 3347 | 3347 |
|
| 3348 |
-AVCodec vc1_decoder = {
|
|
| 3348 |
+AVCodec ff_vc1_decoder = {
|
|
| 3349 | 3349 |
"vc1", |
| 3350 | 3350 |
AVMEDIA_TYPE_VIDEO, |
| 3351 | 3351 |
CODEC_ID_VC1, |
| ... | ... |
@@ -3361,7 +3361,7 @@ AVCodec vc1_decoder = {
|
| 3361 | 3361 |
}; |
| 3362 | 3362 |
|
| 3363 | 3363 |
#if CONFIG_WMV3_DECODER |
| 3364 |
-AVCodec wmv3_decoder = {
|
|
| 3364 |
+AVCodec ff_wmv3_decoder = {
|
|
| 3365 | 3365 |
"wmv3", |
| 3366 | 3366 |
AVMEDIA_TYPE_VIDEO, |
| 3367 | 3367 |
CODEC_ID_WMV3, |
| ... | ... |
@@ -3378,7 +3378,7 @@ AVCodec wmv3_decoder = {
|
| 3378 | 3378 |
#endif |
| 3379 | 3379 |
|
| 3380 | 3380 |
#if CONFIG_WMV3_VDPAU_DECODER |
| 3381 |
-AVCodec wmv3_vdpau_decoder = {
|
|
| 3381 |
+AVCodec ff_wmv3_vdpau_decoder = {
|
|
| 3382 | 3382 |
"wmv3_vdpau", |
| 3383 | 3383 |
AVMEDIA_TYPE_VIDEO, |
| 3384 | 3384 |
CODEC_ID_WMV3, |
| ... | ... |
@@ -3395,7 +3395,7 @@ AVCodec wmv3_vdpau_decoder = {
|
| 3395 | 3395 |
#endif |
| 3396 | 3396 |
|
| 3397 | 3397 |
#if CONFIG_VC1_VDPAU_DECODER |
| 3398 |
-AVCodec vc1_vdpau_decoder = {
|
|
| 3398 |
+AVCodec ff_vc1_vdpau_decoder = {
|
|
| 3399 | 3399 |
"vc1_vdpau", |
| 3400 | 3400 |
AVMEDIA_TYPE_VIDEO, |
| 3401 | 3401 |
CODEC_ID_VC1, |
| ... | ... |
@@ -176,7 +176,7 @@ static av_cold int encode_init(AVCodecContext *avctx){
|
| 176 | 176 |
} |
| 177 | 177 |
#endif |
| 178 | 178 |
|
| 179 |
-AVCodec vcr1_decoder = {
|
|
| 179 |
+AVCodec ff_vcr1_decoder = {
|
|
| 180 | 180 |
"vcr1", |
| 181 | 181 |
AVMEDIA_TYPE_VIDEO, |
| 182 | 182 |
CODEC_ID_VCR1, |
| ... | ... |
@@ -190,7 +190,7 @@ AVCodec vcr1_decoder = {
|
| 190 | 190 |
}; |
| 191 | 191 |
|
| 192 | 192 |
#if CONFIG_VCR1_ENCODER |
| 193 |
-AVCodec vcr1_encoder = {
|
|
| 193 |
+AVCodec ff_vcr1_encoder = {
|
|
| 194 | 194 |
"vcr1", |
| 195 | 195 |
AVMEDIA_TYPE_VIDEO, |
| 196 | 196 |
CODEC_ID_VCR1, |
| ... | ... |
@@ -565,7 +565,7 @@ static int vmdaudio_decode_frame(AVCodecContext *avctx, |
| 565 | 565 |
* Public Data Structures |
| 566 | 566 |
*/ |
| 567 | 567 |
|
| 568 |
-AVCodec vmdvideo_decoder = {
|
|
| 568 |
+AVCodec ff_vmdvideo_decoder = {
|
|
| 569 | 569 |
"vmdvideo", |
| 570 | 570 |
AVMEDIA_TYPE_VIDEO, |
| 571 | 571 |
CODEC_ID_VMDVIDEO, |
| ... | ... |
@@ -578,7 +578,7 @@ AVCodec vmdvideo_decoder = {
|
| 578 | 578 |
.long_name = NULL_IF_CONFIG_SMALL("Sierra VMD video"),
|
| 579 | 579 |
}; |
| 580 | 580 |
|
| 581 |
-AVCodec vmdaudio_decoder = {
|
|
| 581 |
+AVCodec ff_vmdaudio_decoder = {
|
|
| 582 | 582 |
"vmdaudio", |
| 583 | 583 |
AVMEDIA_TYPE_AUDIO, |
| 584 | 584 |
CODEC_ID_VMDAUDIO, |
| ... | ... |
@@ -2212,7 +2212,7 @@ static av_cold int theora_decode_init(AVCodecContext *avctx) |
| 2212 | 2212 |
return vp3_decode_init(avctx); |
| 2213 | 2213 |
} |
| 2214 | 2214 |
|
| 2215 |
-AVCodec theora_decoder = {
|
|
| 2215 |
+AVCodec ff_theora_decoder = {
|
|
| 2216 | 2216 |
"theora", |
| 2217 | 2217 |
AVMEDIA_TYPE_VIDEO, |
| 2218 | 2218 |
CODEC_ID_THEORA, |
| ... | ... |
@@ -2227,7 +2227,7 @@ AVCodec theora_decoder = {
|
| 2227 | 2227 |
}; |
| 2228 | 2228 |
#endif |
| 2229 | 2229 |
|
| 2230 |
-AVCodec vp3_decoder = {
|
|
| 2230 |
+AVCodec ff_vp3_decoder = {
|
|
| 2231 | 2231 |
"vp3", |
| 2232 | 2232 |
AVMEDIA_TYPE_VIDEO, |
| 2233 | 2233 |
CODEC_ID_VP3, |
| ... | ... |
@@ -606,7 +606,7 @@ static av_cold int vp6_decode_free(AVCodecContext *avctx) |
| 606 | 606 |
return 0; |
| 607 | 607 |
} |
| 608 | 608 |
|
| 609 |
-AVCodec vp6_decoder = {
|
|
| 609 |
+AVCodec ff_vp6_decoder = {
|
|
| 610 | 610 |
"vp6", |
| 611 | 611 |
AVMEDIA_TYPE_VIDEO, |
| 612 | 612 |
CODEC_ID_VP6, |
| ... | ... |
@@ -620,7 +620,7 @@ AVCodec vp6_decoder = {
|
| 620 | 620 |
}; |
| 621 | 621 |
|
| 622 | 622 |
/* flash version, not flipped upside-down */ |
| 623 |
-AVCodec vp6f_decoder = {
|
|
| 623 |
+AVCodec ff_vp6f_decoder = {
|
|
| 624 | 624 |
"vp6f", |
| 625 | 625 |
AVMEDIA_TYPE_VIDEO, |
| 626 | 626 |
CODEC_ID_VP6F, |
| ... | ... |
@@ -634,7 +634,7 @@ AVCodec vp6f_decoder = {
|
| 634 | 634 |
}; |
| 635 | 635 |
|
| 636 | 636 |
/* flash version, not flipped upside-down, with alpha channel */ |
| 637 |
-AVCodec vp6a_decoder = {
|
|
| 637 |
+AVCodec ff_vp6a_decoder = {
|
|
| 638 | 638 |
"vp6a", |
| 639 | 639 |
AVMEDIA_TYPE_VIDEO, |
| 640 | 640 |
CODEC_ID_VP6A, |
| ... | ... |
@@ -1188,7 +1188,7 @@ static int wavpack_decode_frame(AVCodecContext *avctx, |
| 1188 | 1188 |
return s->samples_left > 0 ? 0 : avpkt->size; |
| 1189 | 1189 |
} |
| 1190 | 1190 |
|
| 1191 |
-AVCodec wavpack_decoder = {
|
|
| 1191 |
+AVCodec ff_wavpack_decoder = {
|
|
| 1192 | 1192 |
"wavpack", |
| 1193 | 1193 |
AVMEDIA_TYPE_AUDIO, |
| 1194 | 1194 |
CODEC_ID_WAVPACK, |
| ... | ... |
@@ -939,7 +939,7 @@ static av_cold void flush(AVCodecContext *avctx) |
| 939 | 939 |
s->last_superframe_len= 0; |
| 940 | 940 |
} |
| 941 | 941 |
|
| 942 |
-AVCodec wmav1_decoder = |
|
| 942 |
+AVCodec ff_wmav1_decoder = |
|
| 943 | 943 |
{
|
| 944 | 944 |
"wmav1", |
| 945 | 945 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -953,7 +953,7 @@ AVCodec wmav1_decoder = |
| 953 | 953 |
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 1"),
|
| 954 | 954 |
}; |
| 955 | 955 |
|
| 956 |
-AVCodec wmav2_decoder = |
|
| 956 |
+AVCodec ff_wmav2_decoder = |
|
| 957 | 957 |
{
|
| 958 | 958 |
"wmav2", |
| 959 | 959 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -383,7 +383,7 @@ static int encode_superframe(AVCodecContext *avctx, |
| 383 | 383 |
return put_bits_ptr(&s->pb) - s->pb.buf; |
| 384 | 384 |
} |
| 385 | 385 |
|
| 386 |
-AVCodec wmav1_encoder = |
|
| 386 |
+AVCodec ff_wmav1_encoder = |
|
| 387 | 387 |
{
|
| 388 | 388 |
"wmav1", |
| 389 | 389 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -396,7 +396,7 @@ AVCodec wmav1_encoder = |
| 396 | 396 |
.long_name = NULL_IF_CONFIG_SMALL("Windows Media Audio 1"),
|
| 397 | 397 |
}; |
| 398 | 398 |
|
| 399 |
-AVCodec wmav2_encoder = |
|
| 399 |
+AVCodec ff_wmav2_encoder = |
|
| 400 | 400 |
{
|
| 401 | 401 |
"wmav2", |
| 402 | 402 |
AVMEDIA_TYPE_AUDIO, |
| ... | ... |
@@ -564,7 +564,7 @@ static av_cold int xan_decode_end(AVCodecContext *avctx) |
| 564 | 564 |
return 0; |
| 565 | 565 |
} |
| 566 | 566 |
|
| 567 |
-AVCodec xan_wc3_decoder = {
|
|
| 567 |
+AVCodec ff_xan_wc3_decoder = {
|
|
| 568 | 568 |
"xan_wc3", |
| 569 | 569 |
AVMEDIA_TYPE_VIDEO, |
| 570 | 570 |
CODEC_ID_XAN_WC3, |
| ... | ... |
@@ -578,7 +578,7 @@ AVCodec xan_wc3_decoder = {
|
| 578 | 578 |
}; |
| 579 | 579 |
|
| 580 | 580 |
/* |
| 581 |
-AVCodec xan_wc4_decoder = {
|
|
| 581 |
+AVCodec ff_xan_wc4_decoder = {
|
|
| 582 | 582 |
"xan_wc4", |
| 583 | 583 |
AVMEDIA_TYPE_VIDEO, |
| 584 | 584 |
CODEC_ID_XAN_WC4, |