From e48993e3cf532a1713562a147c244b267f5ab713 Mon Sep 17 00:00:00 2001 From: Stefano Sabatini Date: Fri, 27 May 2011 10:52:34 +0200 Subject: [PATCH] lavdev: include libavformat/avformat.h in avdevice.h The header is always required for files which directly deal with devices, since libavdevice uses the AVFormat* structures defined in avformat.h. Avoid the need to explicitely add libavformat/avformat.h. --- libavdevice/avdevice.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libavdevice/avdevice.h b/libavdevice/avdevice.h index 7633af4475..a31c080f9c 100644 --- a/libavdevice/avdevice.h +++ b/libavdevice/avdevice.h @@ -20,6 +20,7 @@ #define AVDEVICE_AVDEVICE_H #include "libavutil/avutil.h" +#include "libavformat/avformat.h" #define LIBAVDEVICE_VERSION_MAJOR 53 #define LIBAVDEVICE_VERSION_MINOR 0