diff options
author | Kacper Michajłow <kasper93@gmail.com> | 2025-08-09 05:38:20 +0200 |
---|---|---|
committer | Kacper Michajłow <kasper93@gmail.com> | 2025-08-11 19:29:53 +0000 |
commit | 1a1377c53decf1264ca255910124caae82fd63a0 (patch) | |
tree | 16bc9525cee3e1bcd62bb3fc619715312db0e839 | |
parent | 48b941d54335cd8314df3773b4a98fe2c46efd38 (diff) | |
download | ffmpeg-1a1377c53decf1264ca255910124caae82fd63a0.tar.gz |
avfilter/stack_internal: fix checkheaders test
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
-rw-r--r-- | libavfilter/stack_internal.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libavfilter/stack_internal.h b/libavfilter/stack_internal.h index ace8886152..b4f9b92223 100644 --- a/libavfilter/stack_internal.h +++ b/libavfilter/stack_internal.h @@ -19,6 +19,10 @@ #ifndef AVFILTER_STACK_INTERNAL_H #define AVFILTER_STACK_INTERNAL_H +#ifdef HWContext + +#include "libavfilter/framesync.h" + enum { STACK_H = 0, STACK_V = 1, @@ -57,4 +61,6 @@ static int stack_init(AVFilterContext *avctx); static av_cold void stack_uninit(AVFilterContext *avctx); static int stack_activate(AVFilterContext *avctx); +#endif + #endif /* AVFILTER_STACK_INTERNAL_H */ |