From 625bac784b818733b403e61cddfec3d20702f520 Mon Sep 17 00:00:00 2001 From: Diego Biurrun Date: Wed, 1 Sep 2010 02:12:03 +0000 Subject: [PATCH] Use quotes instead of angle brackets for local #includes. Originally committed as revision 25015 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/ansi.c | 2 +- libavcore/avcore.h | 2 +- libavcore/parseutils.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/libavcodec/ansi.c b/libavcodec/ansi.c index cec9cb1..ad85906 100644 --- a/libavcodec/ansi.c +++ b/libavcodec/ansi.c @@ -24,9 +24,9 @@ * ASCII/ANSI art decoder */ +#include "libavutil/lfg.h" #include "avcodec.h" #include "cga_data.h" -#include #define ATTR_BOLD 0x01 /**< Bold/Bright-foreground (mode 1) */ #define ATTR_FAINT 0x02 /**< Faint (mode 2) */ diff --git a/libavcore/avcore.h b/libavcore/avcore.h index 7b7583b..98c8651 100644 --- a/libavcore/avcore.h +++ b/libavcore/avcore.h @@ -24,7 +24,7 @@ * shared media utilities for the libav* libraries */ -#include +#include "libavutil/avutil.h" #define LIBAVCORE_VERSION_MAJOR 0 #define LIBAVCORE_VERSION_MINOR 6 diff --git a/libavcore/parseutils.h b/libavcore/parseutils.h index a81cc18..ad31ef2 100644 --- a/libavcore/parseutils.h +++ b/libavcore/parseutils.h @@ -19,7 +19,7 @@ #ifndef AVCORE_PARSEUTILS_H #define AVCORE_PARSEUTILS_H -#include +#include "libavutil/rational.h" /** * @file -- 2.7.4