diff options
author | Andreas Öman <andreas@lonelycoder.com> | 2008-07-11 15:25:12 +0000 |
---|---|---|
committer | Andreas Öman <andreas@lonelycoder.com> | 2008-07-11 15:25:12 +0000 |
commit | 0261e3651a9e09bd661fd338a79e04bc0a02cf71 (patch) | |
tree | 17a0a0515b1dfa2212994cb1dd4224430a767c15 /libavcodec/utils.c | |
parent | 876ef93d99c01bad849fb39a40d099944a2881d5 (diff) | |
download | ffmpeg-0261e3651a9e09bd661fd338a79e04bc0a02cf71.tar.gz |
Deprecate avcodec_build(), it returns the same value as
avcodec_version().
Originally committed as revision 14169 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 3c7108da45..2c31c78282 100644 --- a/libavcodec/utils.c +++ b/libavcodec/utils.c @@ -1200,10 +1200,12 @@ unsigned avcodec_version( void ) return LIBAVCODEC_VERSION_INT; } +#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0) unsigned avcodec_build( void ) { return LIBAVCODEC_BUILD; } +#endif void avcodec_init(void) { |