[FFmpeg-cvslog] r23806 - in trunk/libavcodec: aac_tablegen.h aacps_tablegen.h mdct_tablegen.h pcm_tablegen.h qdm2_tablegen.h

mru subversion
Sat Jun 26 22:28:44 CEST 2010


Author: mru
Date: Sat Jun 26 22:28:44 2010
New Revision: 23806

Log:
Remove unnecessary ../ from include directives

Modified:
   trunk/libavcodec/aac_tablegen.h
   trunk/libavcodec/aacps_tablegen.h
   trunk/libavcodec/mdct_tablegen.h
   trunk/libavcodec/pcm_tablegen.h
   trunk/libavcodec/qdm2_tablegen.h

Modified: trunk/libavcodec/aac_tablegen.h
==============================================================================
--- trunk/libavcodec/aac_tablegen.h	Sat Jun 26 22:28:40 2010	(r23805)
+++ trunk/libavcodec/aac_tablegen.h	Sat Jun 26 22:28:44 2010	(r23806)
@@ -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)

Modified: trunk/libavcodec/aacps_tablegen.h
==============================================================================
--- trunk/libavcodec/aacps_tablegen.h	Sat Jun 26 22:28:40 2010	(r23805)
+++ trunk/libavcodec/aacps_tablegen.h	Sat Jun 26 22:28:44 2010	(r23806)
@@ -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

Modified: trunk/libavcodec/mdct_tablegen.h
==============================================================================
--- trunk/libavcodec/mdct_tablegen.h	Sat Jun 26 22:28:40 2010	(r23805)
+++ trunk/libavcodec/mdct_tablegen.h	Sat Jun 26 22:28:44 2010	(r23806)
@@ -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);

Modified: trunk/libavcodec/pcm_tablegen.h
==============================================================================
--- trunk/libavcodec/pcm_tablegen.h	Sat Jun 26 22:28:40 2010	(r23805)
+++ trunk/libavcodec/pcm_tablegen.h	Sat Jun 26 22:28:44 2010	(r23806)
@@ -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) */
 

Modified: trunk/libavcodec/qdm2_tablegen.h
==============================================================================
--- trunk/libavcodec/qdm2_tablegen.h	Sat Jun 26 22:28:40 2010	(r23805)
+++ trunk/libavcodec/qdm2_tablegen.h	Sat Jun 26 22:28:44 2010	(r23806)
@@ -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



More information about the ffmpeg-cvslog mailing list