Commit 625bac78 authored by Diego Biurrun's avatar Diego Biurrun

Use quotes instead of angle brackets for local #includes.

Originally committed as revision 25015 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent eeeae2bf
...@@ -24,9 +24,9 @@ ...@@ -24,9 +24,9 @@
* ASCII/ANSI art decoder * ASCII/ANSI art decoder
*/ */
#include "libavutil/lfg.h"
#include "avcodec.h" #include "avcodec.h"
#include "cga_data.h" #include "cga_data.h"
#include <libavutil/lfg.h>
#define ATTR_BOLD 0x01 /**< Bold/Bright-foreground (mode 1) */ #define ATTR_BOLD 0x01 /**< Bold/Bright-foreground (mode 1) */
#define ATTR_FAINT 0x02 /**< Faint (mode 2) */ #define ATTR_FAINT 0x02 /**< Faint (mode 2) */
......
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
* shared media utilities for the libav* libraries * shared media utilities for the libav* libraries
*/ */
#include <libavutil/avutil.h> #include "libavutil/avutil.h"
#define LIBAVCORE_VERSION_MAJOR 0 #define LIBAVCORE_VERSION_MAJOR 0
#define LIBAVCORE_VERSION_MINOR 6 #define LIBAVCORE_VERSION_MINOR 6
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
#ifndef AVCORE_PARSEUTILS_H #ifndef AVCORE_PARSEUTILS_H
#define AVCORE_PARSEUTILS_H #define AVCORE_PARSEUTILS_H
#include <libavutil/rational.h> #include "libavutil/rational.h"
/** /**
* @file * @file
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment