diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-10 16:49:31 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2023-09-10 17:32:11 +0200 |
commit | 7b6e1fbeb93ea0c8806824cde81e04c2d1840667 (patch) | |
tree | fa0dcd2343b75a19defa475421c6a4d870e538e5 /libavdevice | |
parent | ab7d38f970674e6765b5e1adb911c1763b9ce806 (diff) | |
download | ffmpeg-7b6e1fbeb93ea0c8806824cde81e04c2d1840667.tar.gz |
avformat/vapoursynth: Add missing inclusion of frame.h
Broken in 0c6e5f321bf5c4054e8b98232692465b342b42b4.
Also add it to decklink_enc.cpp in order not to rely
on an implicit inclusion via libavfilter/ccfifo.h.
Reviewed-by: あんこ <mailcrystaldiskinfo@gmail.com>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavdevice')
-rw-r--r-- | libavdevice/decklink_enc.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavdevice/decklink_enc.cpp b/libavdevice/decklink_enc.cpp index ffd0ad9250..cb8f91730e 100644 --- a/libavdevice/decklink_enc.cpp +++ b/libavdevice/decklink_enc.cpp @@ -33,6 +33,7 @@ extern "C" { extern "C" { #include "libavformat/avformat.h" #include "libavcodec/bytestream.h" +#include "libavutil/frame.h" #include "libavutil/internal.h" #include "libavutil/imgutils.h" #include "avdevice.h" |