shithub: opus

Download patch

ref: 7931a6013587160a6f83f044677dfc08671bff65
parent: 839de4d0823a5affc8a4b8b797f5080d2c3bb385
author: Ralph Giles <[email protected]>
date: Fri Oct 28 07:29:41 EDT 2011

Remove relative paths to opus.h.

Files are already compiled with -I./include, the relative
path in the #include line isn't necessary.

--- a/tests/test_opus_api.c
+++ b/tests/test_opus_api.c
@@ -50,7 +50,7 @@
 #include <stdint.h>
 #include <string.h>
 #include "arch.h"
-#include "../include/opus.h"
+#include "opus.h"
 #include "test_opus_common.h"
 
 #ifdef VALGRIND
--- a/tests/test_opus_decode.c
+++ b/tests/test_opus_decode.c
@@ -37,7 +37,7 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
-#include "../include/opus.h"
+#include "opus.h"
 #include "test_opus_common.h"
 
 #define MAX_PACKET (1500)
--- a/tests/test_opus_encode.c
+++ b/tests/test_opus_encode.c
@@ -37,7 +37,7 @@
 #include <string.h>
 #include <time.h>
 #include <unistd.h>
-#include "../include/opus.h"
+#include "opus.h"
 #include "../src/opus_private.h"
 #include "test_opus_common.h"