changeset 379:47c878305986 libavcodec

build info for ABI
author nickols_k
date Sun, 12 May 2002 15:53:25 +0000
parents 7875553fc63b
children 975aa6fe83b8
files avcodec.h utils.c
diffstat 2 files changed, 7 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/avcodec.h	Sun May 12 15:30:10 2002 +0000
+++ b/avcodec.h	Sun May 12 15:53:25 2002 +0000
@@ -389,6 +389,8 @@
 
 /* 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);
--- a/utils.c	Sun May 12 15:30:10 2002 +0000
+++ b/utils.c	Sun May 12 15:53:25 2002 +0000
@@ -412,6 +412,11 @@
   return LIBAVCODEC_VERSION_INT;
 }
 
+unsigned avcodec_build( void )
+{
+  return LIBAVCODEC_BUILD;
+}
+
 /* must be called before any other functions */
 void avcodec_init(void)
 {