diff options
Diffstat (limited to 'src')
| -rwxr-xr-x | src/AS_DCP.h | 4 | ||||
| -rwxr-xr-x | src/AS_DCP_internal.h | 6 | ||||
| -rw-r--r-- | src/AtmosSyncChannel_Mixer.h | 6 | ||||
| -rwxr-xr-x | src/JP2K.h | 6 | ||||
| -rw-r--r-- | src/JXS.h | 6 | ||||
| -rwxr-xr-x | src/KLV.h | 4 | ||||
| -rw-r--r-- | src/KM_aes.h | 2 | ||||
| -rwxr-xr-x | src/KM_fileio.h | 2 | ||||
| -rwxr-xr-x | src/KM_log.h | 6 | ||||
| -rwxr-xr-x | src/KM_memio.h | 2 | ||||
| -rwxr-xr-x | src/KM_mutex.h | 2 | ||||
| -rwxr-xr-x | src/KM_prng.h | 2 | ||||
| -rw-r--r-- | src/KM_sha1.h | 2 | ||||
| -rw-r--r-- | src/KM_tai.h | 2 | ||||
| -rwxr-xr-x | src/KM_util.h | 6 | ||||
| -rw-r--r-- | src/KM_xml.h | 2 | ||||
| -rwxr-xr-x | src/MPEG.h | 2 | ||||
| -rwxr-xr-x | src/PCMParserList.h | 4 | ||||
| -rw-r--r-- | src/ST2095_PinkNoise.h | 2 | ||||
| -rwxr-xr-x | src/Wav.h | 4 | ||||
| -rwxr-xr-x | src/WavFileWriter.h | 4 |
21 files changed, 38 insertions, 38 deletions
diff --git a/src/AS_DCP.h b/src/AS_DCP.h index fcf9253..e41d70c 100755 --- a/src/AS_DCP.h +++ b/src/AS_DCP.h @@ -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> diff --git a/src/AS_DCP_internal.h b/src/AS_DCP_internal.h index 5e7b9cc..249ca2f 100755 --- a/src/AS_DCP_internal.h +++ b/src/AS_DCP_internal.h @@ -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; diff --git a/src/AtmosSyncChannel_Mixer.h b/src/AtmosSyncChannel_Mixer.h index 27c3b9f..5258ee0 100644 --- a/src/AtmosSyncChannel_Mixer.h +++ b/src/AtmosSyncChannel_Mixer.h @@ -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 @@ -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 @@ -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 @@ -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> diff --git a/src/KM_aes.h b/src/KM_aes.h index 0f958cc..13cb21e 100644 --- a/src/KM_aes.h +++ b/src/KM_aes.h @@ -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 diff --git a/src/KM_fileio.h b/src/KM_fileio.h index d8147e3..38f7301 100755 --- a/src/KM_fileio.h +++ b/src/KM_fileio.h @@ -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> diff --git a/src/KM_log.h b/src/KM_log.h index 9279f30..f8e054f 100755 --- a/src/KM_log.h +++ b/src/KM_log.h @@ -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> diff --git a/src/KM_memio.h b/src/KM_memio.h index 6419828..c03cecd 100755 --- a/src/KM_memio.h +++ b/src/KM_memio.h @@ -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> diff --git a/src/KM_mutex.h b/src/KM_mutex.h index fa13085..148050b 100755 --- a/src/KM_mutex.h +++ b/src/KM_mutex.h @@ -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> diff --git a/src/KM_prng.h b/src/KM_prng.h index f4497ed..52c7f76 100755 --- a/src/KM_prng.h +++ b/src/KM_prng.h @@ -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 { diff --git a/src/KM_sha1.h b/src/KM_sha1.h index ea232e2..643a7a9 100644 --- a/src/KM_sha1.h +++ b/src/KM_sha1.h @@ -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; diff --git a/src/KM_tai.h b/src/KM_tai.h index da90df7..6fa641b 100644 --- a/src/KM_tai.h +++ b/src/KM_tai.h @@ -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 diff --git a/src/KM_util.h b/src/KM_util.h index a6b2de7..974cae2 100755 --- a/src/KM_util.h +++ b/src/KM_util.h @@ -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> diff --git a/src/KM_xml.h b/src/KM_xml.h index 120857c..e7d76c9 100644 --- a/src/KM_xml.h +++ b/src/KM_xml.h @@ -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> @@ -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> diff --git a/src/PCMParserList.h b/src/PCMParserList.h index 0af1627..e09144c 100755 --- a/src/PCMParserList.h +++ b/src/PCMParserList.h @@ -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 diff --git a/src/ST2095_PinkNoise.h b/src/ST2095_PinkNoise.h index a5b5da5..856c2d5 100644 --- a/src/ST2095_PinkNoise.h +++ b/src/ST2095_PinkNoise.h @@ -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> // @@ -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 { diff --git a/src/WavFileWriter.h b/src/WavFileWriter.h index f5a5495..ae82855 100755 --- a/src/WavFileWriter.h +++ b/src/WavFileWriter.h @@ -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> |
