|
|
@ -3482,21 +3482,22 @@ const char *avcodec_configuration(void); |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
const char *avcodec_license(void); |
|
|
|
const char *avcodec_license(void); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if FF_API_AVCODEC_INIT |
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Initialize libavcodec. |
|
|
|
* @deprecated this function is called automatically from avcodec_register() |
|
|
|
* If called more than once, does nothing. |
|
|
|
* and avcodec_register_all(), there is no need to call it manually |
|
|
|
* |
|
|
|
|
|
|
|
* @warning This function must be called before any other libavcodec |
|
|
|
|
|
|
|
* function. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @warning This function is not thread-safe. |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
attribute_deprecated |
|
|
|
void avcodec_init(void); |
|
|
|
void avcodec_init(void); |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Register the codec codec and initialize libavcodec. |
|
|
|
* Register the codec codec and initialize libavcodec. |
|
|
|
* |
|
|
|
* |
|
|
|
* @see avcodec_init(), avcodec_register_all() |
|
|
|
* @warning either this function or avcodec_register_all() must be called |
|
|
|
|
|
|
|
* before any other libavcodec functions. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* @see avcodec_register_all() |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
void avcodec_register(AVCodec *codec); |
|
|
|
void avcodec_register(AVCodec *codec); |
|
|
|
|
|
|
|
|
|
|
|