diff options
author | Matthieu Bouron <matthieu.bouron@gmail.com> | 2019-04-29 11:24:37 +0200 |
---|---|---|
committer | Matthieu Bouron <matthieu.bouron@gmail.com> | 2019-07-22 08:57:33 +0200 |
commit | 6251ad89a77566254b934fbf95159d66e29328a8 (patch) | |
tree | 7aab659280718be8920584686bae59be310e80a0 | |
parent | 116303cd245138370ac684d28e086f30e12e9f6d (diff) | |
download | ffmpeg-6251ad89a77566254b934fbf95159d66e29328a8.tar.gz |
avcodec/mediacodec_wrapper: add missing "avcodec.h" include
-rw-r--r-- | libavcodec/mediacodec_wrapper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/mediacodec_wrapper.h b/libavcodec/mediacodec_wrapper.h index f0de16d669..b106ff315a 100644 --- a/libavcodec/mediacodec_wrapper.h +++ b/libavcodec/mediacodec_wrapper.h @@ -26,6 +26,8 @@ #include <stdint.h> #include <sys/types.h> +#include "avcodec.h" + /** * The following API around MediaCodec and MediaFormat is based on the * NDK one provided by Google since Android 5.0. |