diff mbox series

[FFmpeg-devel,3/3] lavu/fifo: mark all AVFifoBuffer members as deprecated

Message ID 20230129101735.14173-3-anton@khirnov.net
State New
Headers show
Series [FFmpeg-devel,1/3] lavu/fifo: remove FF_API_FIFO_PEEK2 | expand

Checks

Context Check Description
andriy/make_x86 success Make finished
andriy/make_fate_x86 success Make fate finished

Commit Message

Anton Khirnov Jan. 29, 2023, 10:17 a.m. UTC
---
 libavutil/fifo.h | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/libavutil/fifo.h b/libavutil/fifo.h
index ed86800da4..2e0c600dd3 100644
--- a/libavutil/fifo.h
+++ b/libavutil/fifo.h
@@ -242,8 +242,11 @@  void av_fifo_freep2(AVFifo **f);
 
 #if FF_API_FIFO_OLD_API
 typedef struct AVFifoBuffer {
+    attribute_deprecated
     uint8_t *buffer;
+    attribute_deprecated
     uint8_t *rptr, *wptr, *end;
+    attribute_deprecated
     uint32_t rndx, wndx;
 } AVFifoBuffer;