diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-03-08 14:42:11 +0000 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2009-03-08 14:42:11 +0000 |
commit | c957c8542676d092af1a812860c0b379738b7f01 (patch) | |
tree | 5031eace7c94d5b88298f9e4cc61984f4f14d4ee /libavutil | |
parent | 792e467904d161780c7a62c71aa2dd30b377d54d (diff) | |
download | ffmpeg-c957c8542676d092af1a812860c0b379738b7f01.tar.gz |
Replace all uses of the replaced av_fifo_read by av_fifo_generic_read
Originally committed as revision 17873 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavutil')
-rw-r--r-- | libavutil/fifo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/fifo.c b/libavutil/fifo.c index 2df177dd7e..26a81657d9 100644 --- a/libavutil/fifo.c +++ b/libavutil/fifo.c @@ -63,7 +63,7 @@ int av_fifo_realloc2(AVFifoBuffer *f, unsigned int new_size) { if (!f2) return -1; - av_fifo_read(f, f2->buffer, len); + av_fifo_generic_read(f, len, NULL, f2->buffer); f2->wptr += len; f2->wndx += len; av_free(f->buffer); |