diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-04-08 17:27:42 +0200 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2015-04-09 16:40:12 +0200 |
commit | c201069fac9a76e6604f9d84d76a172434d62200 (patch) | |
tree | a01d35dac44bbe040ab0f12639e90ae0af7024d4 /libavdevice/vfwcap.c | |
parent | 27852f2f1dec3749ea79883b70484c841169f747 (diff) | |
download | ffmpeg-c201069fac9a76e6604f9d84d76a172434d62200.tar.gz |
avdevice: Add missing header for NULL_IF_CONFIG_SMALL
Also reshuffle headers into canonical order where appropriate.
Diffstat (limited to 'libavdevice/vfwcap.c')
-rw-r--r-- | libavdevice/vfwcap.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/libavdevice/vfwcap.c b/libavdevice/vfwcap.c index b47de1b282..4182642ce9 100644 --- a/libavdevice/vfwcap.c +++ b/libavdevice/vfwcap.c @@ -19,13 +19,16 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavformat/avformat.h" -#include "libavformat/internal.h" +#include <vfw.h> +#include <windows.h> + +#include "libavutil/internal.h" #include "libavutil/log.h" #include "libavutil/opt.h" #include "libavutil/parseutils.h" -#include <windows.h> -#include <vfw.h> + +#include "libavformat/avformat.h" +#include "libavformat/internal.h" /* Some obsolete versions of MinGW32 before 4.0.0 lack this. */ #ifndef HWND_MESSAGE |