Browse Source

Use quotes instead of angle brackets for local #includes.

Originally committed as revision 25015 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Diego Biurrun 15 years ago
parent
commit
625bac784b
3 changed files with 3 additions and 3 deletions
  1. +1
    -1
      libavcodec/ansi.c
  2. +1
    -1
      libavcore/avcore.h
  3. +1
    -1
      libavcore/parseutils.h

+ 1
- 1
libavcodec/ansi.c View File

@@ -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) */


+ 1
- 1
libavcore/avcore.h View File

@@ -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


+ 1
- 1
libavcore/parseutils.h View File

@@ -19,7 +19,7 @@
#ifndef AVCORE_PARSEUTILS_H
#define AVCORE_PARSEUTILS_H

#include <libavutil/rational.h>
#include "libavutil/rational.h"

/**
* @file


Loading…
Cancel
Save