diff options
author | James Almer <jamrial@gmail.com> | 2021-06-10 21:19:28 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2021-06-10 21:19:28 -0300 |
commit | 260dc1c5f3499eea0203d538719ecf27bd165e5a (patch) | |
tree | c1903f41e40e8a1d1a5a751b6b779e5ebc93f027 /doc/examples/extract_mvs.c | |
parent | 3191bb5c355c6b1af5e1756e4ec1b57d0b5e1b7c (diff) | |
download | ffmpeg-260dc1c5f3499eea0203d538719ecf27bd165e5a.tar.gz |
examples/extract_mvs: add missing header
Fixed compilation broken by e67e02d15672.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'doc/examples/extract_mvs.c')
-rw-r--r-- | doc/examples/extract_mvs.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/examples/extract_mvs.c b/doc/examples/extract_mvs.c index f5d2fd9179..84f071075a 100644 --- a/doc/examples/extract_mvs.c +++ b/doc/examples/extract_mvs.c @@ -22,6 +22,7 @@ */ #include <libavutil/motion_vector.h> +#include <libavcodec/avcodec.h> #include <libavformat/avformat.h> static AVFormatContext *fmt_ctx = NULL; |