diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-27 10:52:34 +0200 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2011-05-27 11:57:33 +0200 |
commit | e48993e3cf532a1713562a147c244b267f5ab713 (patch) | |
tree | d0315204923ba25f37d58a23c246ede610ee984e | |
parent | ec76ef5ae251f82ab1080abb83ed7d619f2a002e (diff) | |
download | ffmpeg-e48993e3cf532a1713562a147c244b267f5ab713.tar.gz |
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.
-rw-r--r-- | libavdevice/avdevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |