summaryrefslogtreecommitdiff
path: root/libavutil/fifo.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-05-14 15:24:38 +0200
committerMichael Niedermayer <michaelni@gmx.at>2014-05-14 15:44:01 +0200
commitacb6f3af4fce240957b79a1e58cb0eb60db74ba6 (patch)
treeddad9f5a2bcb20da05961dbee5b4f1dc243a43c2 /libavutil/fifo.h
parent0fdc3cd86fddd690d1fd0ea9ddaa3b0ba3e0af68 (diff)
avutil/fifo: delay addition of const from 78d3453c4a2efef9bc079e8f3458653beafcf990 until next major ABI bump
This unbreaks API, for example audacity has more build errors due to this 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 66fb48a2ed..f0b11094d0 100644
--- a/libavutil/fifo.h
+++ b/libavutil/fifo.h
@@ -65,7 +65,7 @@ void av_fifo_reset(AVFifoBuffer *f);
* @param f AVFifoBuffer to read from
* @return size
*/
-int av_fifo_size(const AVFifoBuffer *f);
+int av_fifo_size(FF_CONST_AVUTIL53 AVFifoBuffer *f);
/**
* Return the amount of space in bytes in the AVFifoBuffer, that is the
@@ -73,7 +73,7 @@ int av_fifo_size(const AVFifoBuffer *f);
* @param f AVFifoBuffer to write into
* @return size
*/
-int av_fifo_space(const AVFifoBuffer *f);
+int av_fifo_space(FF_CONST_AVUTIL53 AVFifoBuffer *f);
/**
* Feed data from an AVFifoBuffer to a user-supplied callback.