diff mbox series

[FFmpeg-devel] avcodec/hw_base_encode: Add missing include

Message ID GV1P250MB07377A2D489D48E07D65D18D8FDC2@GV1P250MB0737.EURP250.PROD.OUTLOOK.COM
State New
Headers show
Series [FFmpeg-devel] avcodec/hw_base_encode: Add missing include | expand

Checks

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

Commit Message

Andreas Rheinhardt July 2, 2024, 9:18 p.m. UTC
Fixes checkheaders.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
---
 libavcodec/hw_base_encode.h | 1 +
 1 file changed, 1 insertion(+)

Comments

Tong Wu July 3, 2024, 2:12 p.m. UTC | #1
Andreas Rheinhardt:
>Subject: [FFmpeg-devel] [PATCH] avcodec/hw_base_encode: Add missing include
>
>Fixes checkheaders.
>
>Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
>---
> libavcodec/hw_base_encode.h | 1 +
> 1 file changed, 1 insertion(+)
>
>diff --git a/libavcodec/hw_base_encode.h b/libavcodec/hw_base_encode.h index
>e528f2013b..ac0cc7b80c 100644
>--- a/libavcodec/hw_base_encode.h
>+++ b/libavcodec/hw_base_encode.h
>@@ -19,6 +19,7 @@
> #ifndef AVCODEC_HW_BASE_ENCODE_H
> #define AVCODEC_HW_BASE_ENCODE_H
>
>+#include "avcodec.h"
> #include "libavutil/hwcontext.h"
> #include "libavutil/fifo.h"
>
>--


LGTM, thanks.
diff mbox series

Patch

diff --git a/libavcodec/hw_base_encode.h b/libavcodec/hw_base_encode.h
index e528f2013b..ac0cc7b80c 100644
--- a/libavcodec/hw_base_encode.h
+++ b/libavcodec/hw_base_encode.h
@@ -19,6 +19,7 @@ 
 #ifndef AVCODEC_HW_BASE_ENCODE_H
 #define AVCODEC_HW_BASE_ENCODE_H
 
+#include "avcodec.h"
 #include "libavutil/hwcontext.h"
 #include "libavutil/fifo.h"