diff options
author | Michael Niedermayer | 2014-11-24 02:10:45 +0100 |
---|---|---|
committer | Michael Niedermayer | 2014-11-24 02:22:19 +0100 |
commit | 5182a2a235c3840e0ea0b5f3e352dc28646a11ed (patch) | |
tree | ead45b1e436c7ef0dff90c776c1e11dc39f90a45 /libavutil/fifo.h | |
parent | 8294f5042d5c5a9b806c90f866514f5a321c70cf (diff) |
avutil: remove FF_CONST_AVUTIL53, its no longer needed
version is 54 already
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavutil/fifo.h')
-rw-r--r-- | libavutil/fifo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavutil/fifo.h b/libavutil/fifo.h index dda7dd2e96..f3bdcbceb4 100644 --- a/libavutil/fifo.h +++ b/libavutil/fifo.h @@ -73,7 +73,7 @@ void av_fifo_reset(AVFifoBuffer *f); * @param f AVFifoBuffer to read from * @return size */ -int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f); +int av_fifo_size(const AVFifoBuffer *f); /** * Return the amount of space in bytes in the AVFifoBuffer, that is the @@ -81,7 +81,7 @@ int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f); * @param f AVFifoBuffer to write into * @return size */ -int av_fifo_space(FF_CONST_AVUTIL53 AVFifoBuffer *f); +int av_fifo_space(const AVFifoBuffer *f); /** * Feed data from an AVFifoBuffer to a user-supplied callback. |