summaryrefslogtreecommitdiff
path: root/src/Makefile.am
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2015-10-07 16:41:23 +0000
committerjhurst <>2015-10-07 16:41:23 +0000
commitaf6a1e4ef13dcf5811ccd9eb6b63d21bdc88dc70 (patch)
tree021ae744f611d9bfd2f8832c665351132205ab0b /src/Makefile.am
parent77200515d9acee07988f26dadfa37ffbd169cdfb (diff)
o Moved personal dev environment from older gcc to newer clang. Many small changes were made to satisfy the new compiler:
- Altered many printf format codes to use the correct type for the given integer type - Parenthesized some expressions to clarify previously ambiguous expectations of precedence - Created macro KM_MACOSX for use in OS-specific code selection - Removed last uses of the old C-language abs(), now using Kumu::xabs() - Removed last uses of the old C-language atoi() o Added platform-independent call Kumu::GetExecutablePath() (test with win32) o Fixed a bug that was causing Array properties to be written without the (count, length) header (from PAL) o Fixed Win32 build (from Crowe) o Added imlementation of SMPTE ST 2092-1 pink noise generator o Added pinkwave CLI utility o Added font support to the IMF timed-text wrapper
Diffstat (limited to 'src/Makefile.am')
-rw-r--r--src/Makefile.am24
1 files changed, 20 insertions, 4 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index a1f28f5..2f84f6e 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -58,6 +58,7 @@ include_HEADERS = \
if DEV_HEADERS
include_HEADERS += \
S12MTimecode.h \
+ ST2095_PinkNoise.h \
MDD.h \
Metadata.h \
KLV.h \
@@ -124,7 +125,8 @@ libasdcp_la_SOURCES = MPEG2_Parser.cpp MPEG.cpp JP2K_Codestream_Parser.cpp \
AtmosSyncChannel_Mixer.cpp AtmosSyncChannel_Mixer.h \
PCMDataProviders.cpp PCMDataProviders.h \
SyncEncoder.c SyncEncoder.h SyncCommon.h CRC16.c CRC16.h \
- UUIDInformation.c UUIDInformation.h
+ UUIDInformation.c UUIDInformation.h \
+ ST2095_PinkNoise.cpp
libasdcp_la_LDFLAGS = -release @VERSION@
@@ -207,9 +209,20 @@ endif
# list of programs to be built and installed
bin_PROGRAMS = \
- asdcp-wrap asdcp-unwrap asdcp-util asdcp-info asdcp-test \
- j2c-test blackwave klvwalk wavesplit klvsplit \
- kmfilegen kmrandgen kmuuidgen
+ asdcp-wrap \
+ asdcp-unwrap \
+ asdcp-util \
+ asdcp-info \
+ asdcp-test \
+ j2c-test \
+ blackwave \
+ pinkwave \
+ klvwalk \
+ wavesplit \
+ klvsplit \
+ kmfilegen \
+ kmrandgen \
+ kmuuidgen
if USE_AS_02
bin_PROGRAMS += \
@@ -251,6 +264,9 @@ kmuuidgen_LDADD = libkumu.la
blackwave_SOURCES = blackwave.cpp
blackwave_LDADD = libasdcp.la libkumu.la
+pinkwave_SOURCES = pinkwave.cpp
+pinkwave_LDADD = libasdcp.la libkumu.la
+
klvwalk_SOURCES = klvwalk.cpp
klvwalk_LDADD = libasdcp.la libkumu.la