diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-05-21 18:21:19 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-06-10 16:51:44 +0200 |
commit | 43002487cbae4f7a94c575679790816e0ad99434 (patch) | |
tree | 3702727dc1104260a4628e96f274e20424929cad | |
parent | 93822dacb903009ae21574771c8d25b09b18b8ed (diff) | |
download | ffmpeg-43002487cbae4f7a94c575679790816e0ad99434.tar.gz |
lavc/mlp_parse: add required includes explicitly
-rw-r--r-- | libavcodec/mlp_parse.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/libavcodec/mlp_parse.h b/libavcodec/mlp_parse.h index a0790ae8c7..f0d7b41c11 100644 --- a/libavcodec/mlp_parse.h +++ b/libavcodec/mlp_parse.h @@ -21,6 +21,10 @@ #ifndef AVCODEC_MLP_PARSE_H #define AVCODEC_MLP_PARSE_H +#include <stdint.h> + +#include "libavutil/channel_layout.h" + #include "get_bits.h" typedef struct MLPHeaderInfo |