mirror of
				https://github.com/nyanmisaka/ffmpeg-rockchip.git
				synced 2025-10-31 12:36:41 +08: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:
		| @@ -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) { \ | ||||
|   | ||||
| @@ -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 | ||||
|  */ | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Stefano Sabatini
					Stefano Sabatini