From cddcf8c60f1ffd09cb738cabed54108f3af131d5 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Reimar=20D=C3=B6ffinger?= Date: Sun, 8 Mar 2009 14:21:56 +0000 Subject: [PATCH] Remove av_fifo_read, API is already broken and major version will be bumped soon. Originally committed as revision 17870 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavutil/fifo.c | 5 ----- libavutil/fifo.h | 8 -------- 2 files changed, 13 deletions(-) diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 515b2d7f5..2df177dd7 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -48,11 +48,6 @@ int av_fifo_size(AVFifoBuffer *f) return (uint32_t)(f->wndx - f->rndx); } -int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size) -{ - return av_fifo_generic_read(f, buf_size, NULL, buf); -} - #if LIBAVUTIL_VERSION_MAJOR < 50 void av_fifo_realloc(AVFifoBuffer *f, unsigned int new_size) { av_fifo_realloc2(f, new_size); diff --git a/libavutil/fifo.h b/libavutil/fifo.h index 4c3a5289f..d1949044f 100644 --- a/libavutil/fifo.h +++ b/libavutil/fifo.h @@ -55,14 +55,6 @@ void av_fifo_free(AVFifoBuffer *f); */ int av_fifo_size(AVFifoBuffer *f); -/** - * Reads data from an AVFifoBuffer. - * @param *f AVFifoBuffer to read from - * @param *buf data destination - * @param buf_size number of bytes to read - */ -int av_fifo_read(AVFifoBuffer *f, uint8_t *buf, int buf_size); - /** * Feeds data from an AVFifoBuffer to a user-supplied callback. * @param *f AVFifoBuffer to read from -- 2.34.1