Browse code

Drop pointless directory name prefixes from #includes in the current dir

Diego Biurrun authored on 2013/09/10 15:30:54
Showing 9 changed files
... ...
@@ -39,7 +39,8 @@
39 39
 #include "libavutil/pixfmt.h"
40 40
 #include "libavutil/rational.h"
41 41
 
42
-#include "libavcodec/version.h"
42
+#include "version.h"
43
+
43 44
 /**
44 45
  * @defgroup libavc Encoding/Decoding Library
45 46
  * @{
... ...
@@ -21,8 +21,8 @@
21 21
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 22
  */
23 23
 
24
-#include "libavcodec/bytestream.h"
25 24
 #include "avcodec.h"
25
+#include "bytestream.h"
26 26
 #include "s3tc.h"
27 27
 
28 28
 static inline void dxt1_decode_pixels(GetByteContext *gb, uint32_t *d,
... ...
@@ -21,10 +21,9 @@
21 21
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 22
  */
23 23
 
24
-#include "libavutil/intreadwrite.h"
25
-
26 24
 #include "avutil.h"
27 25
 #include "common.h"
26
+#include "intreadwrite.h"
28 27
 #include "blowfish.h"
29 28
 
30 29
 static const uint32_t orig_p[AV_BF_ROUNDS + 2] = {
... ...
@@ -339,7 +339,9 @@ void av_des_mac(AVDES *d, uint8_t *dst, const uint8_t *src, int count) {
339 339
 #ifdef TEST
340 340
 #include <stdlib.h>
341 341
 #include <stdio.h>
342
-#include "libavutil/time.h"
342
+
343
+#include "time.h"
344
+
343 345
 static uint64_t rand64(void) {
344 346
     uint64_t r = rand();
345 347
     r = (r << 32) | rand();
... ...
@@ -17,7 +17,7 @@
17 17
  */
18 18
 
19 19
 #include "config.h"
20
-#include "libavutil/attributes.h"
20
+#include "attributes.h"
21 21
 #include "float_dsp.h"
22 22
 
23 23
 static void vector_fmul_c(float *dst, const float *src0, const float *src1,
... ...
@@ -28,7 +28,7 @@
28 28
  */
29 29
 
30 30
 #include "libavutil/avconfig.h"
31
-#include "libavutil/version.h"
31
+#include "version.h"
32 32
 
33 33
 /**
34 34
  * Pixel format.
... ...
@@ -31,7 +31,7 @@
31 31
 #include <windows.h>
32 32
 #endif
33 33
 
34
-#include "libavutil/time.h"
34
+#include "time.h"
35 35
 #include "error.h"
36 36
 
37 37
 int64_t av_gettime(void)
... ...
@@ -21,10 +21,9 @@
21 21
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 22
  */
23 23
 
24
-#include "libavutil/intreadwrite.h"
25
-
26 24
 #include "avutil.h"
27 25
 #include "common.h"
26
+#include "intreadwrite.h"
28 27
 #include "xtea.h"
29 28
 
30 29
 void av_xtea_init(AVXTEA *ctx, const uint8_t key[16])
... ...
@@ -28,8 +28,8 @@
28 28
 
29 29
 #include <inttypes.h>
30 30
 
31
-#include "libswscale/swscale.h"
32 31
 #include "libavutil/avutil.h"
32
+#include "swscale.h"
33 33
 
34 34
 /* A full collection of RGB to RGB(BGR) converters */
35 35
 extern void (*rgb24tobgr32)(const uint8_t *src, uint8_t *dst, int src_size);