diff options
author | Diego Biurrun <diego@biurrun.de> | 2009-03-21 13:51:29 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2009-03-21 13:51:29 +0000 |
commit | 2bbd85719c9402199ccbac60b6d6322f813e0885 (patch) | |
tree | 5de5ae4c0dc470e56d00508beca79fccf2b687b3 /libavcodec/bitstream.c | |
parent | 986b6f8f7360215bea51dc66ae97412ac67c136e (diff) | |
download | ffmpeg-2bbd85719c9402199ccbac60b6d6322f813e0885.tar.gz |
Remove deprecated functions and structures on next version bump.
Originally committed as revision 18110 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/bitstream.c')
-rw-r--r-- | libavcodec/bitstream.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/bitstream.c b/libavcodec/bitstream.c index 6781fe6cb0..5d9bd32707 100644 --- a/libavcodec/bitstream.c +++ b/libavcodec/bitstream.c @@ -37,6 +37,7 @@ const uint8_t ff_log2_run[32]={ 8, 9,10,11,12,13,14,15 }; +#if LIBAVCODEC_VERSION_MAJOR < 53 /** * Same as av_mallocz_static(), but does a realloc. * @@ -53,6 +54,7 @@ static void *ff_realloc_static(void *ptr, unsigned int size) { return av_realloc(ptr, size); } +#endif void align_put_bits(PutBitContext *s) { |