Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-11-24 04:10:45 +0300
committerMichael Niedermayer <michaelni@gmx.at>2014-11-24 04:22:19 +0300
commit5182a2a235c3840e0ea0b5f3e352dc28646a11ed (patch)
treeead45b1e436c7ef0dff90c776c1e11dc39f90a45 /libavutil/fifo.h
parent8294f5042d5c5a9b806c90f866514f5a321c70cf (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.h4
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.