diff options
author | Diego Biurrun <diego@biurrun.de> | 2010-09-01 02:12:03 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2010-09-01 02:12:03 +0000 |
commit | 625bac784b818733b403e61cddfec3d20702f520 (patch) | |
tree | a78c39566d62e90a6c33984d687df5c33c245ef0 | |
parent | eeeae2bf051a6a1bbd145423816e835ae082a0bf (diff) | |
download | ffmpeg-625bac784b818733b403e61cddfec3d20702f520.tar.gz |
Use quotes instead of angle brackets for local #includes.
Originally committed as revision 25015 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | libavcodec/ansi.c | 2 | ||||
-rw-r--r-- | libavcore/avcore.h | 2 | ||||
-rw-r--r-- | libavcore/parseutils.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/ansi.c b/libavcodec/ansi.c index cec9cb1ca1..ad85906095 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 <libavutil/lfg.h> #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 7b7583b7be..98c86516fa 100644 --- a/libavcore/avcore.h +++ b/libavcore/avcore.h @@ -24,7 +24,7 @@ * shared media utilities for the libav* libraries */ -#include <libavutil/avutil.h> +#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 a81cc18f50..ad31ef29e5 100644 --- a/libavcore/parseutils.h +++ b/libavcore/parseutils.h @@ -19,7 +19,7 @@ #ifndef AVCORE_PARSEUTILS_H #define AVCORE_PARSEUTILS_H -#include <libavutil/rational.h> +#include "libavutil/rational.h" /** * @file |