diff options
author | Kacper Michajłow <kasper93@gmail.com> | 2025-08-09 02:48:35 +0200 |
---|---|---|
committer | Kacper Michajłow <kasper93@gmail.com> | 2025-08-11 19:29:53 +0000 |
commit | eec391993e447aaa9b8da38c5daaa4c31849d10f (patch) | |
tree | 8cbf52ac10dd0ec39fb71bde7ac4dba4c9bf2b00 | |
parent | a6380c35d6ffc2c1ddd5ddd61c82ead4caa40ab7 (diff) | |
download | ffmpeg-eec391993e447aaa9b8da38c5daaa4c31849d10f.tar.gz |
avcodec/prores_raw: add missing includes
Signed-off-by: Kacper Michajłow <kasper93@gmail.com>
-rw-r--r-- | libavcodec/prores_raw.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/prores_raw.h b/libavcodec/prores_raw.h index 9f370303d4..3ac8068dd5 100644 --- a/libavcodec/prores_raw.h +++ b/libavcodec/prores_raw.h @@ -22,7 +22,9 @@ #ifndef AVCODEC_PRORES_RAW_H #define AVCODEC_PRORES_RAW_H +#include "libavutil/frame.h" #include "libavutil/mem_internal.h" +#include "libavutil/pixfmt.h" #include "bytestream.h" #include "blockdsp.h" |