1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-10-04 09:37:53 +02:00

Replace the calls to the deprecated function register_avcodec() with

corresponding calls to avcodec_register().

Originally committed as revision 17027 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Stefano Sabatini 2009-02-06 23:50:54 +00:00
parent 85662f4935
commit 9be26823b9
2 changed files with 3 additions and 3 deletions

View File

@ -28,10 +28,10 @@
#define REGISTER_ENCODER(X,x) { \
extern AVCodec x##_encoder; \
if(CONFIG_##X##_ENCODER) register_avcodec(&x##_encoder); }
if(CONFIG_##X##_ENCODER) avcodec_register(&x##_encoder); }
#define REGISTER_DECODER(X,x) { \
extern AVCodec x##_decoder; \
if(CONFIG_##X##_DECODER) register_avcodec(&x##_decoder); }
if(CONFIG_##X##_DECODER) avcodec_register(&x##_decoder); }
#define REGISTER_ENCDEC(X,x) REGISTER_ENCODER(X,x); REGISTER_DECODER(X,x)
#define REGISTER_PARSER(X,x) { \

View File

@ -2879,7 +2879,7 @@ int avcodec_close(AVCodecContext *avctx);
* which formats you want to support, by using the individual registration
* functions.
*
* @see register_avcodec
* @see avcodec_register
* @see av_register_codec_parser
* @see av_register_bitstream_filter
*/