diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-03-08 15:02:12 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-03-08 15:02:12 +0000 |
commit | fe4032b66a20fea40f9d1cc147c07dc45b5ecadc (patch) | |
tree | e491ca244bf745526ab04949f8480f7bb514bf62 /libavutil/fifo.c | |
parent | 3fb108430645c15beb3c1f1c84fdfcd92de3bdb8 (diff) | |
download | ffmpeg-fe4032b66a20fea40f9d1cc147c07dc45b5ecadc.tar.gz |
Remove more functions disabled by major version bump.
Originally committed as revision 17876 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil/fifo.c')
-rw-r--r-- | libavutil/fifo.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 26a81657d9..57b229a4c4 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -48,12 +48,6 @@ int av_fifo_size(AVFifoBuffer *f) return (uint32_t)(f->wndx - f->rndx); } -#if LIBAVUTIL_VERSION_MAJOR < 50 -void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) { - av_fifo_realloc2(f, new_size); -} -#endif - int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) { unsigned int old_size= f->end - f->buffer; @@ -73,13 +67,6 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) { return 0; } -#if LIBAVUTIL_VERSION_MAJOR < 50 -void av_fifo_write(AVFifoBuffer *f, const uint8_t *buf, int size) -{ - av_fifo_generic_write(f, (void *)buf, size, NULL); -} -#endif - int av_fifo_generic_write(AVFifoBuffer *f, void *src, int size, int (*func)(void*, void*, int)) { int total = size; |