diff options
author | Anton Khirnov <anton@khirnov.net> | 2021-05-31 12:01:45 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2021-06-10 16:51:44 +0200 |
commit | 58a39e3436ced39a2d1ef10e76f243e98ed235be (patch) | |
tree | e9401ee43648d6d6d192498643de2d04c07565d2 | |
parent | 43002487cbae4f7a94c575679790816e0ad99434 (diff) | |
download | ffmpeg-58a39e3436ced39a2d1ef10e76f243e98ed235be.tar.gz |
lavc/hevc_sei: include buffer.h explicitly
Do not rely on including it indirectly through get_bits.h->avcodec.h
-rw-r--r-- | libavcodec/hevc_sei.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/hevc_sei.h b/libavcodec/hevc_sei.h index c67dbceb6c..4b6bfddeb9 100644 --- a/libavcodec/hevc_sei.h +++ b/libavcodec/hevc_sei.h @@ -23,6 +23,8 @@ #include <stdint.h> +#include "libavutil/buffer.h" + #include "get_bits.h" #include "sei.h" |