Mercurial > hg > svcore
comparison data/fileio/WavFileReader.cpp @ 682:bd527db65d20
More informative error message
author | Chris Cannam |
---|---|
date | Tue, 10 May 2011 17:55:57 +0100 |
parents | ecef2f1bec18 |
children | b4a8d8221eaf |
comparison
equal
deleted
inserted
replaced
681:6097aacd7ba3 | 682:bd527db65d20 |
---|---|
37 m_fileInfo.format = 0; | 37 m_fileInfo.format = 0; |
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 (" | 42 std::cerr << "WavFileReader::initialize: Failed to open file at \"" |
43 << m_path.toStdString() << "\" (" | |
43 << sf_strerror(m_file) << ")" << std::endl; | 44 << sf_strerror(m_file) << ")" << std::endl; |
44 | 45 |
45 if (m_file) { | 46 if (m_file) { |
46 m_error = QString("Couldn't load audio file '%1':\n%2") | 47 m_error = QString("Couldn't load audio file '%1':\n%2") |
47 .arg(m_path).arg(sf_strerror(m_file)); | 48 .arg(m_path).arg(sf_strerror(m_file)); |
77 | 78 |
78 if (m_file) { | 79 if (m_file) { |
79 sf_close(m_file); | 80 sf_close(m_file); |
80 m_file = sf_open(m_path.toLocal8Bit(), SFM_READ, &m_fileInfo); | 81 m_file = sf_open(m_path.toLocal8Bit(), SFM_READ, &m_fileInfo); |
81 if (!m_file || m_fileInfo.channels <= 0) { | 82 if (!m_file || m_fileInfo.channels <= 0) { |
82 std::cerr << "WavFileReader::updateFrameCount: Failed to open file (" | 83 std::cerr << "WavFileReader::updateFrameCount: Failed to open file at \"" << m_path.toStdString() << "\" (" |
83 << sf_strerror(m_file) << ")" << std::endl; | 84 << sf_strerror(m_file) << ")" << std::endl; |
84 } | 85 } |
85 } | 86 } |
86 | 87 |
87 // std::cerr << "WavFileReader::updateFrameCount: now " << m_fileInfo.frames << std::endl; | 88 // std::cerr << "WavFileReader::updateFrameCount: now " << m_fileInfo.frames << std::endl; |