# HG changeset patch # User nickols_k # Date 1021218805 0 # Node ID 47c8783059865c7715b10f080a2a4baff77e9347 # Parent 7875553fc63b3589beb1e58eae1be2d2984fdaeb build info for ABI diff -r 7875553fc63b -r 47c878305986 avcodec.h --- 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); diff -r 7875553fc63b -r 47c878305986 utils.c --- 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) {