diff options
author | Gyan Doshi <ffmpeg@gyani.pro> | 2021-03-17 10:51:30 +0530 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2021-03-17 14:36:13 +0100 |
commit | 434b626b7a3d236b19d1c649e0399df157d4273f (patch) | |
tree | d6795d6c1ee0e8590e35e4cdeaacfb3bb93e7179 | |
parent | 9383885c0d2155b1f9e65c08c3f35d190ae2ba98 (diff) | |
download | ffmpeg-434b626b7a3d236b19d1c649e0399df157d4273f.tar.gz |
avcodec/libdavs2: unbreak compilation failure
FF_CODEC_CAP_AUTO_THREADS added in 8a129077cc requires internal.h
Signed-off-by: Timo Rothenpieler <timo@rothenpieler.org>
-rw-r--r-- | libavcodec/libdavs2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/libdavs2.c b/libavcodec/libdavs2.c index 383b54039a..0f18353c93 100644 --- a/libavcodec/libdavs2.c +++ b/libavcodec/libdavs2.c @@ -23,6 +23,7 @@ */ #include "avcodec.h" +#include "internal.h" #include "davs2.h" typedef struct DAVS2Context { |