From 5090122f906d13a8bd02ade4f1d39f1fb8ac3321 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Sun, 25 Jan 2009 19:22:47 +0000 Subject: Drop deprecated av_fifo_write function with the next libavutil version bump. Originally committed as revision 16782 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/fifo.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libavutil/fifo.c') diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 518fba24c6..12c6534cf7 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -74,10 +74,12 @@ 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)) { -- cgit v1.2.3