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-26 18:28:15 +0200 |
commit | 65434823a1eed14733580e75b0f0706731885b90 (patch) | |
tree | 011f4087ddf78a4834359a8987f5ef3f026d3ff9 | |
parent | c60e1d6be5a3ad081e2e001379b8171aa738e032 (diff) | |
download | ffmpeg-65434823a1eed14733580e75b0f0706731885b90.tar.gz |
avcodec/mediacodec_wrapper: add missing "avcodec.h" include
(cherry picked from commit 6251ad89a77566254b934fbf95159d66e29328a8)
-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. |