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/bktr.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/bktr.c')
-rw-r--r-- | libavdevice/bktr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavdevice/bktr.c b/libavdevice/bktr.c index 0e57258f14..7b0f1b7382 100644 --- a/libavdevice/bktr.c +++ b/libavdevice/bktr.c @@ -24,7 +24,6 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "libavformat/avformat.h" #include "libavutil/log.h" #include "libavutil/opt.h" #if HAVE_DEV_BKTR_IOCTL_METEOR_H && HAVE_DEV_BKTR_IOCTL_BT848_H @@ -47,6 +46,7 @@ #include <signal.h> #include <stdint.h> #include <strings.h> +#include "avdevice.h" typedef struct { AVClass *class; |