Browse Source

Remove unnecessary ../ from include directives

Originally committed as revision 23806 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Måns Rullgård 15 years ago
parent
commit
69d12904da
5 changed files with 6 additions and 6 deletions
  1. +1
    -1
      libavcodec/aac_tablegen.h
  2. +2
    -2
      libavcodec/aacps_tablegen.h
  3. +1
    -1
      libavcodec/mdct_tablegen.h
  4. +1
    -1
      libavcodec/pcm_tablegen.h
  5. +1
    -1
      libavcodec/qdm2_tablegen.h

+ 1
- 1
libavcodec/aac_tablegen.h View File

@@ -28,7 +28,7 @@
#if CONFIG_HARDCODED_TABLES
#include "libavcodec/aac_tables.h"
#else
#include "../libavutil/mathematics.h"
#include "libavutil/mathematics.h"
float ff_aac_pow2sf_tab[428];

void ff_aac_tableinit(void)


+ 2
- 2
libavcodec/aacps_tablegen.h View File

@@ -29,8 +29,8 @@
#define ps_tableinit()
#include "libavcodec/aacps_tables.h"
#else
#include "../libavutil/common.h"
#include "../libavutil/mathematics.h"
#include "libavutil/common.h"
#include "libavutil/mathematics.h"
#define NR_ALLPASS_BANDS20 30
#define NR_ALLPASS_BANDS34 50
#define PS_AP_LINKS 3


+ 1
- 1
libavcodec/mdct_tablegen.h View File

@@ -24,7 +24,7 @@
// do not use libavutil/libm.h since this is compiled both
// for the host and the target and config.h is only valid for the target
#include <math.h>
#include "../libavutil/attributes.h"
#include "libavutil/attributes.h"

#if !CONFIG_HARDCODED_TABLES
SINETABLE( 32);


+ 1
- 1
libavcodec/pcm_tablegen.h View File

@@ -24,7 +24,7 @@
#define PCM_TABLEGEN_H

#include <stdint.h>
#include "../libavutil/attributes.h"
#include "libavutil/attributes.h"

/* from g711.c by SUN microsystems (unrestricted use) */



+ 1
- 1
libavcodec/qdm2_tablegen.h View File

@@ -25,7 +25,7 @@

#include <stdint.h>
#include <math.h>
#include "../libavutil/attributes.h"
#include "libavutil/attributes.h"

#define SOFTCLIP_THRESHOLD 27600
#define HARDCLIP_THRESHOLD 35716


Loading…
Cancel
Save