FFMPEG4.0初步解读

前言;

ffmpeg4.0 的API发生重大变化,之前使用的av_register_all()、av_configuration()这些API已经被明确标记为attribute_deprecated

void av_register_all(void);
 
 
attribute_deprecated
void av_register_input_format(AVInputFormat *format);
attribute_deprecated
void av_register_output_format(AVOutputFormat *format);
#endif
此类接口在使用过程中已经存在明显的崩溃等现象

猜你喜欢

转载自blog.csdn.net/nh5431313/article/details/80728402