Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-05-21 19:22:03 +0300
committerAnton Khirnov <anton@khirnov.net>2021-06-10 17:51:44 +0300
commitc28823ff97f3281698a2cc7e7a6df5d168c68d50 (patch)
tree58b536cabfd43a7cb76ec0d8d3162a64024c6b98 /libavcodec/get_bits.h
parent58a39e3436ced39a2d1ef10e76f243e98ed235be (diff)
lavc/get_bits: avoid avcodec.h dependency
Include only defs.h, needed for AV_INPUT_BUFFER_PADDING_SIZE.
Diffstat (limited to 'libavcodec/get_bits.h')
-rw-r--r--libavcodec/get_bits.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/libavcodec/get_bits.h b/libavcodec/get_bits.h
index 66fb877599..d4e9276da1 100644
--- a/libavcodec/get_bits.h
+++ b/libavcodec/get_bits.h
@@ -33,7 +33,8 @@
#include "libavutil/intreadwrite.h"
#include "libavutil/log.h"
#include "libavutil/avassert.h"
-#include "avcodec.h"
+
+#include "defs.h"
#include "mathops.h"
#include "vlc.h"