Make av_fifo*_read() ignore the available amount of data.
authorMichael Niedermayer <michaelni@gmx.at>
Sun, 25 May 2008 22:20:39 +0000 (22:20 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Sun, 25 May 2008 22:20:39 +0000 (22:20 +0000)
commit0871ae1a930122f7124358a0ce3caf81876913a9
tree8626d4af558891862dcd1ecc81cb1d949355eb3e
parent46eab09341d3496ad680bb1bf609ea38c7deea66
Make av_fifo*_read() ignore the available amount of data.
This is more efficient as in practice the check is redundant most of the
time. Callers which do not know if enough data is available have to check
it with av_fifo_size(). Doing the check in *read() means the caller has
no choice to skip the check when its known to be redundant.
Also the return value was never documented in a public header so
changing it should not break the API. Besides this fixes the case where
read() failed on a 100% full fifo.

Originally committed as revision 13404 to svn://svn.ffmpeg.org/ffmpeg/trunk
ffmpeg.c
libavformat/mpegenc.c
libavutil/fifo.c