Commit fe2e60d9 authored by nickols_k's avatar nickols_k

build info for ABI


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@489 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 67879505
......@@ -389,6 +389,8 @@ extern AVCodec *first_avcodec;
/* returns LIBAVCODEC_VERSION_INT constant */
unsigned avcodec_version( void );
/* returns LIBAVCODEC_BUILD constant */
unsigned avcodec_build( void );
void avcodec_init(void);
void register_avcodec(AVCodec *format);
......
......@@ -412,6 +412,11 @@ unsigned avcodec_version( void )
return LIBAVCODEC_VERSION_INT;
}
unsigned avcodec_build( void )
{
return LIBAVCODEC_BUILD;
}
/* must be called before any other functions */
void avcodec_init(void)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment