aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec
diff options
context:
space:
mode:
authorAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-08 12:16:54 +0200
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2023-09-11 00:26:34 +0200
commit489d96ca020036b1f423556c0f5f19cad5461ca8 (patch)
treef5d5aa6a1196891a7498106432dc0b10fa5a2a88 /libavcodec
parentb0fb8e82dde375efb8d5602f6cd479f210c1e93c (diff)
downloadffmpeg-489d96ca020036b1f423556c0f5f19cad5461ca8.tar.gz
avcodec/proresdec: Include required headers directly
Do not rely on an indirect inclusion of avcodec.h in proresdsp.h. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavcodec')
-rw-r--r--libavcodec/proresdec.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/proresdec.h b/libavcodec/proresdec.h
index 1e48752e6f..230fca41f2 100644
--- a/libavcodec/proresdec.h
+++ b/libavcodec/proresdec.h
@@ -22,10 +22,15 @@
#ifndef AVCODEC_PRORESDEC_H
#define AVCODEC_PRORESDEC_H
+#include <stdint.h>
+
#include "get_bits.h"
#include "blockdsp.h"
#include "proresdsp.h"
+#include "libavutil/frame.h"
+#include "libavutil/pixfmt.h"
+
typedef struct {
const uint8_t *data;
unsigned mb_x;