summaryrefslogtreecommitdiff
path: root/src/blackwave.cpp
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/blackwave.cpp
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/blackwave.cpp')
-rw-r--r--src/blackwave.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blackwave.cpp b/src/blackwave.cpp
index ac8fea2..501f96a 100644
--- a/src/blackwave.cpp
+++ b/src/blackwave.cpp
@@ -175,7 +175,7 @@ make_black_wav_file(CommandOptions& Options)
if ( Options.verbose_flag )
{
- fprintf(stderr, "%s kHz PCM Audio, %s fps (%u spf)\n", "24",
+ fprintf(stderr, "%s kHz PCM Audio, 24 fps (%u spf)\n",
(Options.s96_flag?"96":"48"), PCM::CalcSamplesPerFrame(ADesc));
fputs("AudioDescriptor:\n", stderr);
PCM::AudioDescriptorDump(ADesc);