summaryrefslogtreecommitdiff
path: root/src/Wav.cpp
diff options
context:
space:
mode:
authorjhurst <jhurst@cinecert.com>2007-03-30 06:06:32 +0000
committerjhurst <>2007-03-30 06:06:32 +0000
commitc2bc637d5ae6fcf295299a839e9fcb84415cd809 (patch)
treedf74065f700f8cd9ade623d8b7a3a29a999140fb /src/Wav.cpp
parent253b0b7af5aacd4e112190689fbdeb10968ca074 (diff)
demoted some Error messages to Debug
Diffstat (limited to 'src/Wav.cpp')
-rwxr-xr-xsrc/Wav.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Wav.cpp b/src/Wav.cpp
index 6c0c0db..c3d0a2b 100755
--- a/src/Wav.cpp
+++ b/src/Wav.cpp
@@ -137,7 +137,7 @@ ASDCP::Wav::SimpleWaveHeader::ReadFromBuffer(const byte_t* buf, ui32_t buf_len,
fourcc test_RIFF(p); p += 4;
if ( test_RIFF != FCC_RIFF )
{
- DefaultLogSink().Error("File does not begin with RIFF header\n");
+ DefaultLogSink().Debug("File does not begin with RIFF header\n");
return RESULT_RAW_FORMAT;
}
@@ -146,7 +146,7 @@ ASDCP::Wav::SimpleWaveHeader::ReadFromBuffer(const byte_t* buf, ui32_t buf_len,
fourcc test_WAVE(p); p += 4;
if ( test_WAVE != FCC_WAVE )
{
- DefaultLogSink().Error("File does not contain a WAVE header\n");
+ DefaultLogSink().Debug("File does not contain a WAVE header\n");
return RESULT_RAW_FORMAT;
}
@@ -303,7 +303,7 @@ ASDCP::AIFF::SimpleAIFFHeader::ReadFromBuffer(const byte_t* buf, ui32_t buf_len,
fourcc test_FORM(p); p += 4;
if ( test_FORM != FCC_FORM )
{
- DefaultLogSink().Error("File does not begin with FORM header\n");
+ DefaultLogSink().Debug("File does not begin with FORM header\n");
return RESULT_RAW_FORMAT;
}
@@ -312,7 +312,7 @@ ASDCP::AIFF::SimpleAIFFHeader::ReadFromBuffer(const byte_t* buf, ui32_t buf_len,
fourcc test_AIFF(p); p += 4;
if ( test_AIFF != FCC_AIFF )
{
- DefaultLogSink().Error("File does not contain an AIFF header\n");
+ DefaultLogSink().Debug("File does not contain an AIFF header\n");
return RESULT_RAW_FORMAT;
}