diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-26 19:11:25 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-27 12:15:09 +0200 |
commit | 6b899e16de94c05203008d969523a642147a5e4b (patch) | |
tree | 68515f5c972c223d751da13231c92322341f3e0b /libavdevice/v4l2.c | |
parent | e48993e3cf532a1713562a147c244b267f5ab713 (diff) | |
download | ffmpeg-6b899e16de94c05203008d969523a642147a5e4b.tar.gz |
lavdev: prefer the inclusion of avdevice.h over that of libavformat/avformat.h
Diffstat (limited to 'libavdevice/v4l2.c')
-rw-r--r-- | libavdevice/v4l2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/v4l2.c b/libavdevice/v4l2.c index a0fc99242e..f219305672 100644 --- a/libavdevice/v4l2.c +++ b/libavdevice/v4l2.c @@ -29,7 +29,6 @@ #undef __STRICT_ANSI__ //workaround due to broken kernel headers #include "config.h" -#include "libavformat/avformat.h" #include <unistd.h> #include <fcntl.h> #include <sys/ioctl.h> @@ -46,6 +45,7 @@ #include "libavutil/imgutils.h" #include "libavutil/log.h" #include "libavutil/opt.h" +#include "avdevice.h" static const int desired_video_buffers = 256; |