build info for ABI
authorNick Kurshev <nickols_k@mail.ru>
Sun, 12 May 2002 15:53:25 +0000 (15:53 +0000)
committerNick Kurshev <nickols_k@mail.ru>
Sun, 12 May 2002 15:53:25 +0000 (15:53 +0000)
Originally committed as revision 489 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/avcodec.h
libavcodec/utils.c

index 3763f7f..cd42058 100644 (file)
@@ -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);
index 0f80b1b..5480494 100644 (file)
@@ -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)
 {