diff mbox series

[FFmpeg-devel] lavc/hevc_sei: include buffer.h explicitly

Message ID 20210531100507.27604-1-anton@khirnov.net
State Accepted
Commit 58a39e3436ced39a2d1ef10e76f243e98ed235be
Headers show
Series [FFmpeg-devel] lavc/hevc_sei: include buffer.h explicitly | expand

Checks

Context Check Description
andriy/x86_make success Make finished
andriy/x86_make_fate success Make fate finished
andriy/PPC64_make success Make finished
andriy/PPC64_make_fate success Make fate finished

Commit Message

Anton Khirnov May 31, 2021, 10:05 a.m. UTC
Do not rely on including it indirectly through get_bits.h->avcodec.h
---
Needed before 12/25, somehow missed it.
---
 libavcodec/hevc_sei.h | 2 ++
 1 file changed, 2 insertions(+)
diff mbox series

Patch

diff --git a/libavcodec/hevc_sei.h b/libavcodec/hevc_sei.h
index c67dbceb6c..4b6bfddeb9 100644
--- a/libavcodec/hevc_sei.h
+++ b/libavcodec/hevc_sei.h
@@ -23,6 +23,8 @@ 
 
 #include <stdint.h>
 
+#include "libavutil/buffer.h"
+
 #include "get_bits.h"
 #include "sei.h"