diff options
author | Zhao Zhili <wantlamy@gmail.com> | 2018-05-14 20:18:00 +0800 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2018-05-16 00:39:52 +0200 |
commit | c0a845f9481dc62d92ea020eb0695e3f73f8c476 (patch) | |
tree | 8e105a5b71e5afea191a2716c461d23808e40212 /doc | |
parent | 84d4af4ea8aacb43abef57f0542cec209705fead (diff) | |
download | ffmpeg-c0a845f9481dc62d92ea020eb0695e3f73f8c476.tar.gz |
examples/filtering_video: add missing headers
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/filtering_video.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/examples/filtering_video.c b/doc/examples/filtering_video.c index b2191251b5..5a314b3127 100644 --- a/doc/examples/filtering_video.c +++ b/doc/examples/filtering_video.c @@ -29,6 +29,8 @@ #define _XOPEN_SOURCE 600 /* for usleep */ #include <unistd.h> +#include <stdio.h> +#include <stdlib.h> #include <libavcodec/avcodec.h> #include <libavformat/avformat.h> |