Fix <> / "" confusion for includes.
authorcah <cah@ableton.com>
Thu, 21 Mar 2024 11:32:18 +0000 (12:32 +0100)
committerCarl Hetherington <cth@carlh.net>
Thu, 21 Mar 2024 19:33:37 +0000 (20:33 +0100)
21 files changed:
src/AS_DCP.h
src/AS_DCP_internal.h
src/AtmosSyncChannel_Mixer.h
src/JP2K.h
src/JXS.h
src/KLV.h
src/KM_aes.h
src/KM_fileio.h
src/KM_log.h
src/KM_memio.h
src/KM_mutex.h
src/KM_prng.h
src/KM_sha1.h
src/KM_tai.h
src/KM_util.h
src/KM_xml.h
src/MPEG.h
src/PCMParserList.h
src/ST2095_PinkNoise.h
src/Wav.h
src/WavFileWriter.h

index fcf9253fa6551b6b8e8cc7ad83277b3eccbdff11..e41d70c1cef8f692c214f4c87f49058a468db10b 100755 (executable)
@@ -84,8 +84,8 @@ This project depends upon the following libraries:
 #ifndef _AS_DCP_H_
 #define _AS_DCP_H_
 
-#include <KM_error.h>
-#include <KM_fileio.h>
+#include "KM_error.h"
+#include "KM_fileio.h"
 #include <stdio.h>
 #include <stdarg.h>
 #include <math.h>
index 5e7b9ccf3c2853b45ae12090383726a044400992..249ca2fb771826bbe66ffa642c87200232f3dbec 100755 (executable)
@@ -32,9 +32,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _AS_DCP_INTERNAL_H_
 #define _AS_DCP_INTERNAL_H_
 
-#include <KM_platform.h>
-#include <KM_util.h>
-#include <KM_log.h>
+#include "KM_platform.h"
+#include "KM_util.h"
+#include "KM_log.h"
 #include "Metadata.h"
 
 using Kumu::DefaultLogSink;
index 27c3b9f87a669b47cf032d8235160e8a115ae823..5258ee079b8f97a5e77636280210a678d54eff29 100644 (file)
@@ -32,9 +32,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _ATMOSSYNCCHANNEL_MIXER_H_
 #define _ATMOSSYNCCHANNEL_MIXER_H_
 
-#include <AS_DCP.h>
-#include <KM_error.h>
-#include <PCMDataProviders.h>
+#include "AS_DCP.h"
+#include "KM_error.h"
+#include "PCMDataProviders.h"
 #include <vector>
 
 namespace ASDCP
index 194e533df7c59f83f5798104dd3c2c5a0e1bff66..ca836a6cf88ff4ab0f9a03f865fe33269b529a28 100755 (executable)
@@ -36,9 +36,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #define _JP2K_H_
 
 // AS_DCP.h is included only for it's base type definitions.
-#include <KM_platform.h>
-#include <KM_util.h>
-#include <AS_DCP.h>
+#include "KM_platform.h"
+#include "KM_util.h"
+#include "AS_DCP.h"
 #include <assert.h>
 
 namespace ASDCP
index 4155f941730c0ef259afee8f548d30571c019808..1f7eab1410a3688bde55d3bfafe8fea5f0249f04 100644 (file)
--- a/src/JXS.h
+++ b/src/JXS.h
@@ -38,9 +38,9 @@ support parsing picture metadata from a codestream header.
 #define _JXS_H_
 
 // AS_DCP.h is included only for it's base type definitions.
-#include <KM_platform.h>
-#include <KM_util.h>
-#include <Metadata.h>
+#include "KM_platform.h"
+#include "KM_util.h"
+#include "Metadata.h"
 #include <assert.h>
 
 namespace ASDCP
index b7f478d6687b73feed4c2d260b9152ada82a9515..37d5d6ee7162c223851742cd64787273f112a3e6 100755 (executable)
--- a/src/KLV.h
+++ b/src/KLV.h
@@ -32,8 +32,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KLV_H_
 #define _KLV_H_
 
-#include <KM_fileio.h>
-#include <KM_memio.h>
+#include "KM_fileio.h"
+#include "KM_memio.h"
 #include "AS_DCP.h"
 #include "MDD.h"
 #include <map>
index 0f958cc2b780dc65fc3911aae387c1551b285f03..13cb21e4613a372b2d719b58f3a1367dd0991964 100644 (file)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_AES_H_
 #define _KM_AES_H_
 
-#include <KM_platform.h>
+#include "KM_platform.h"
 
 #define AES_BLOCKLEN 16 // Block length in bytes - AES is 128b block only
 #define AES_KEYLEN 16   // Key length in bytes
index d8147e35e73175a3e9843a3589454c68461347fe..38f730117fe090950bb5b3ce1e4787c608d4fdf3 100755 (executable)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_FILEIO_H_
 #define _KM_FILEIO_H_
 
-#include <KM_util.h>
+#include "KM_util.h"
 #include <string>
 #include <openssl/md5.h>
 
index 9279f300a41c6d0e9736a53be8f969adf7e22184..f8e054f96ce1615a32e0b299a0e97002520b0399 100755 (executable)
@@ -33,9 +33,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_LOG_H_
 #define _KM_LOG_H_
 
-#include <KM_platform.h>
-#include <KM_mutex.h>
-#include <KM_util.h>
+#include "KM_platform.h"
+#include "KM_mutex.h"
+#include "KM_util.h"
 #include <stdarg.h>
 #include <errno.h>
 #include <iosfwd>
index 641982846f6c4e6f127e48de58429a13f9d2a984..c03cecdd1c0b93d6e55020a4c5c2acf998fb5bab 100755 (executable)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_MEMIO_H_
 #define _KM_MEMIO_H_
 
-#include <KM_platform.h>
+#include "KM_platform.h"
 #include <string>
 #include <cstring>
 
index fa130850f7f70cad91647735029852940b563dec..148050b834426939d7c0e4b7e7a5d7d00da83fa9 100755 (executable)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_MUTEX_H_
 #define _KM_MUTEX_H_
 
-#include <KM_platform.h>
+#include "KM_platform.h"
 
 #ifndef KM_WIN32
 # include <pthread.h>
index f4497ed217d430ef735e4583a7b1c555dc28cccc..52c7f76d40483715c5e38f6457596dab44791573 100755 (executable)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_PRNG_H_
 #define _KM_PRNG_H_
 
-#include <KM_util.h>
+#include "KM_util.h"
 
 namespace Kumu
 {
index ea232e2f8469edd55ff09e9b882e9ff97c27b13a..643a7a91da01fa9bad84e347aad711ac8e4d5545 100644 (file)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_SHA1_H_
 #define _KM_SHA1_H_
 
-#include <KM_platform.h>
+#include "KM_platform.h"
 
 namespace Kumu {
   int const SHA1_DIGEST_LENGTH = 20;
index da90df732fe98ae2e763ff475e8f29b298d551ad..6fa641b19b0a49790068b84f2ba90f51960d0748 100644 (file)
@@ -51,7 +51,7 @@ The libtai source code is in the public domain.
 #ifndef _KUMU_TAI_H_
 #define _KUMU_TAI_H_
 
-#include <KM_platform.h>
+#include "KM_platform.h"
 
 //
 namespace Kumu
index a6b2de71c4740e7dc6a5c9b275bf2be23f924df5..974cae25dd0a6216e0117904ac757ccf5293a7aa 100755 (executable)
@@ -32,9 +32,9 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_UTIL_H_
 #define _KM_UTIL_H_
 
-#include <KM_memio.h>
-#include <KM_error.h>
-#include <KM_tai.h>
+#include "KM_memio.h"
+#include "KM_error.h"
+#include "KM_tai.h"
 #include <string.h>
 #include <list>
 
index 120857c53f8d05cff4cc2fbbe948402ff2d495be..e7d76c91e77c90ff99908a590c75e7320d33b41f 100644 (file)
@@ -33,7 +33,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _KM_XML_H_
 #define _KM_XML_H_
 
-#include <KM_util.h>
+#include "KM_util.h"
 #include <list>
 #include <set>
 #include <string>
index 68335844d72a57967e39ed3907d25cb5c99270fb..f53c6c06c0f020733acf32acf7dd67aa0ae17aca 100755 (executable)
@@ -32,7 +32,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _MPEG_H_
 #define _MPEG_H_
 
-#include <KM_platform.h>
+#include "KM_platform.h"
 #include "AS_DCP.h"
 #include <stdio.h>
 #include <assert.h>
index 0af162738b5425b234187f6a8abdb1e8e6fcd03e..e09144c849eaee2f1a23760d705da315b650d1ff 100755 (executable)
@@ -32,8 +32,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _PCMPARSERLIST_H_
 #define _PCMPARSERLIST_H_
 
-#include <KM_fileio.h>
-#include <AS_DCP.h>
+#include "KM_fileio.h"
+#include "AS_DCP.h"
 #include <vector>
 
 namespace ASDCP
index a5b5da5408379da800e97fdd9109ee99c4178c30..856c2d57b345934ce299ff31df9c15d4b99e58e9 100644 (file)
@@ -33,7 +33,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _ST2095_PINKNOISE_H_
 #define _ST2095_PINKNOISE_H_
 
-#include <KM_fileio.h>
+#include "KM_fileio.h"
 #include <cmath>
 
 //
index 68cf9d8c52cdb94ceb62310307769ba1ab627d66..fb6d49807d4dcb51bd60c44b839c34c754d4aa22 100755 (executable)
--- a/src/Wav.h
+++ b/src/Wav.h
@@ -32,8 +32,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 #ifndef _WAV_H_
 #define _WAV_H_
 
-#include <KM_fileio.h>
-#include <AS_DCP.h>
+#include "KM_fileio.h"
+#include "AS_DCP.h"
 
 namespace ASDCP
 {
index f5a5495bd5838745a31170dd1e47f6f2a86dad21..ae8285536e67645ead4de74ff6e19c6628d7985e 100755 (executable)
@@ -29,8 +29,8 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     \brief   demux and write PCM data to WAV file(s)
 */
 
-#include <KM_fileio.h>
-#include <KM_log.h>
+#include "KM_fileio.h"
+#include "KM_log.h"
 #include <Wav.h>
 #include <list>