summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorAndreas Öman <andreas@lonelycoder.com>2008-07-11 15:25:12 +0000
committerAndreas Öman <andreas@lonelycoder.com>2008-07-11 15:25:12 +0000
commit0261e3651a9e09bd661fd338a79e04bc0a02cf71 (patch)
tree17a0a0515b1dfa2212994cb1dd4224430a767c15 /libavcodec/avcodec.h
parent876ef93d99c01bad849fb39a40d099944a2881d5 (diff)
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/avcodec.h')
-rw-r--r--libavcodec/avcodec.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h
index 5fb945ca90..f7532f74bf 100644
--- a/libavcodec/avcodec.h
+++ b/libavcodec/avcodec.h
@@ -2516,8 +2516,10 @@ AVCodec *av_codec_next(AVCodec *c);
/* returns LIBAVCODEC_VERSION_INT constant */
unsigned avcodec_version(void);
+#if LIBAVCODEC_VERSION_INT < ((52<<16)+(0<<8)+0)
/* returns LIBAVCODEC_BUILD constant */
-unsigned avcodec_build(void);
+attribute_deprecated unsigned avcodec_build(void);
+#endif
/**
* Initializes libavcodec.