comparison data/fileio/WavFileReader.cpp @ 689:573d45e9487b

Merge from debug-output branch
author Chris Cannam
date Tue, 14 Jun 2011 14:47:59 +0100
parents 06f13a3b9e9e
children 1424aa29ae95
comparison
equal deleted inserted replaced
688:be43b2fe68e8 689:573d45e9487b
38 m_fileInfo.frames = 0; 38 m_fileInfo.frames = 0;
39 m_file = sf_open(m_path.toLocal8Bit(), SFM_READ, &m_fileInfo); 39 m_file = sf_open(m_path.toLocal8Bit(), SFM_READ, &m_fileInfo);
40 40
41 if (!m_file || (!fileUpdating && m_fileInfo.channels <= 0)) { 41 if (!m_file || (!fileUpdating && m_fileInfo.channels <= 0)) {
42 std::cerr << "WavFileReader::initialize: Failed to open file at \"" 42 std::cerr << "WavFileReader::initialize: Failed to open file at \""
43 << m_path.toStdString() << "\" (" 43 << m_path << "\" ("
44 << sf_strerror(m_file) << ")" << std::endl; 44 << sf_strerror(m_file) << ")" << std::endl;
45 45
46 if (m_file) { 46 if (m_file) {
47 m_error = QString("Couldn't load audio file '%1':\n%2") 47 m_error = QString("Couldn't load audio file '%1':\n%2")
48 .arg(m_path).arg(sf_strerror(m_file)); 48 .arg(m_path).arg(sf_strerror(m_file));
78 78
79 if (m_file) { 79 if (m_file) {
80 sf_close(m_file); 80 sf_close(m_file);
81 m_file = sf_open(m_path.toLocal8Bit(), SFM_READ, &m_fileInfo); 81 m_file = sf_open(m_path.toLocal8Bit(), SFM_READ, &m_fileInfo);
82 if (!m_file || m_fileInfo.channels <= 0) { 82 if (!m_file || m_fileInfo.channels <= 0) {
83 std::cerr << "WavFileReader::updateFrameCount: Failed to open file at \"" << m_path.toStdString() << "\" (" 83 std::cerr << "WavFileReader::updateFrameCount: Failed to open file at \"" << m_path << "\" ("
84 << sf_strerror(m_file) << ")" << std::endl; 84 << sf_strerror(m_file) << ")" << std::endl;
85 } 85 }
86 } 86 }
87 87
88 // std::cerr << "WavFileReader::updateFrameCount: now " << m_fileInfo.frames << std::endl; 88 // DEBUG << "WavFileReader::updateFrameCount: now " << m_fileInfo.frames << endl;
89 89
90 m_frameCount = m_fileInfo.frames; 90 m_frameCount = m_fileInfo.frames;
91 91
92 if (m_channelCount == 0) { 92 if (m_channelCount == 0) {
93 m_channelCount = m_fileInfo.channels; 93 m_channelCount = m_fileInfo.channels;
120 if (!m_file || !m_channelCount) { 120 if (!m_file || !m_channelCount) {
121 return; 121 return;
122 } 122 }
123 123
124 if ((long)start >= m_fileInfo.frames) { 124 if ((long)start >= m_fileInfo.frames) {
125 // std::cerr << "WavFileReader::getInterleavedFrames: " << start 125 // DEBUG << "WavFileReader::getInterleavedFrames: " << start
126 // << " > " << m_fileInfo.frames << std::endl; 126 // << " > " << m_fileInfo.frames << endl;
127 return; 127 return;
128 } 128 }
129 129
130 if (long(start + count) > m_fileInfo.frames) { 130 if (long(start + count) > m_fileInfo.frames) {
131 count = m_fileInfo.frames - start; 131 count = m_fileInfo.frames - start;