diff mbox series

[FFmpeg-devel,07/25] lavc/cbs_bsf.h: explicitly #include all required headers

Message ID 20210521180056.17496-7-anton@khirnov.net
State Accepted
Commit f3f404edd2298e051c72b9817bf0477ecb7dcb92
Headers show
Series [FFmpeg-devel,01/25] lavc: move small misc definitions into a separate header | 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 21, 2021, 6 p.m. UTC
---
 libavcodec/cbs_bsf.h | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox series

Patch

diff --git a/libavcodec/cbs_bsf.h b/libavcodec/cbs_bsf.h
index 6be95abc3f..a370be1b5f 100644
--- a/libavcodec/cbs_bsf.h
+++ b/libavcodec/cbs_bsf.h
@@ -19,7 +19,13 @@ 
 #ifndef AVCODEC_CBS_BSF_H
 #define AVCODEC_CBS_BSF_H
 
+#include "libavutil/log.h"
+#include "libavutil/opt.h"
+
+#include "bsf.h"
+#include "codec_id.h"
 #include "cbs.h"
+#include "packet.h"
 
 
 typedef struct CBSBSFType {