Commit 3247c726 authored by nickols_k's avatar nickols_k

version info


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@443 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent ea9df516
......@@ -327,6 +327,8 @@ int avpicture_deinterlace(AVPicture *dst, AVPicture *src,
extern AVCodec *first_avcodec;
/* returns LIBAVCODEC_VERSION_INT constant */
unsigned avcodec_version( void );
void avcodec_init(void);
void register_avcodec(AVCodec *format);
......
......@@ -402,6 +402,10 @@ int avpicture_get_size(int pix_fmt, int width, int height)
return size;
}
unsigned avcodec_version( void )
{
return LIBAVCODEC_VERSION_INT;
}
/* 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