Replace the calls to the deprecated function register_avcodec() with
authorStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 6 Feb 2009 23:50:54 +0000 (23:50 +0000)
committerStefano Sabatini <stefano.sabatini-lala@poste.it>
Fri, 6 Feb 2009 23:50:54 +0000 (23:50 +0000)
corresponding calls to avcodec_register().

Originally committed as revision 17027 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/allcodecs.c
libavcodec/avcodec.h

index 1ef106a..0cb0e6d 100644 (file)
 
 #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) { \
index 0c1902a..ea095c9 100644 (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
  */