diff options
author | Jan Ekström <jeebjp@gmail.com> | 2017-12-01 22:21:54 +0200 |
---|---|---|
committer | Jan Ekström <jeebjp@gmail.com> | 2017-12-01 22:51:53 +0200 |
commit | 6939b3cb9d60a3159413d76c8656cb240c823412 (patch) | |
tree | 5b90e2588e661ff0ace46cee60e0e0a94f2a1863 | |
parent | 9bed17cd0f02dda5e1211a7a61c24b8957a2e100 (diff) | |
download | ffmpeg-6939b3cb9d60a3159413d76c8656cb240c823412.tar.gz |
mediacodecdec: fix build by including hwaccel.h
Enables the decoder to utilize the type AVCodecHWConfigInternal.
-rw-r--r-- | libavcodec/mediacodecdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mediacodecdec.c b/libavcodec/mediacodecdec.c index 6d392adb3a..39f5cbc045 100644 --- a/libavcodec/mediacodecdec.c +++ b/libavcodec/mediacodecdec.c @@ -33,6 +33,7 @@ #include "avcodec.h" #include "h264_parse.h" #include "hevc_parse.h" +#include "hwaccel.h" #include "internal.h" #include "mediacodec_wrapper.h" #include "mediacodecdec_common.h" |