Symbol: THROW_ON_ERROR
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
113
THROW_ON_ERROR(spInputSource->GetTerminatingData(spBuffer.GetPtr()));
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
114
THROW_ON_ERROR(spAPECompress->Finish(spBuffer.GetPtr(), nTerminatingBytes, nTerminatingBytes))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
296
THROW_ON_ERROR(spAPEDecompress->GetInfo(APE_INFO_WAVEFORMATEX, (int) &wfeInput))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
303
THROW_ON_ERROR(spAPEDecompress->GetInfo(APE_INFO_WAV_HEADER_DATA, (int) spTempBuffer.GetPtr(), spAPEDecompress->GetInfo(APE_INFO_WAV_HEADER_BYTES)));
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
309
spioOutput.Assign(new IO_CLASS_NAME); THROW_ON_ERROR(spioOutput->Create(pOutputFilename))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
312
THROW_ON_ERROR(WriteSafe(spioOutput, spTempBuffer, spAPEDecompress->GetInfo(APE_INFO_WAV_HEADER_BYTES)));
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
322
THROW_ON_ERROR(spAPECompress->Start(pOutputFilename, &wfeInput, spAPEDecompress->GetInfo(APE_DECOMPRESS_TOTAL_BLOCKS) * spAPEDecompress->GetInfo(APE_INFO_BLOCK_ALIGN),
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
355
THROW_ON_ERROR(spAPECompress->AddData(spTempBuffer, nBlocksDecoded * spAPEDecompress->GetInfo(APE_INFO_BLOCK_ALIGN)))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
375
THROW_ON_ERROR(spAPEDecompress->GetInfo(APE_INFO_WAV_TERMINATING_DATA, (int) spTempBuffer.GetPtr(), spAPEDecompress->GetInfo(APE_INFO_WAV_TERMINATING_BYTES)))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
397
THROW_ON_ERROR(spAPEDecompress->GetInfo(APE_INFO_WAV_TERMINATING_DATA, (int) spTempBuffer.GetPtr(), nTerminatingBytes))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
402
THROW_ON_ERROR(GET_IO(spAPEDecompress)->Seek(-(nTagBytes), FILE_END))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
403
THROW_ON_ERROR(GET_IO(spAPEDecompress)->Read(&spTempBuffer[spAPEDecompress->GetInfo(APE_INFO_WAV_TERMINATING_BYTES)], nTagBytes, &nBytesRead))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
406
THROW_ON_ERROR(spAPECompress->Finish(spTempBuffer, nTerminatingBytes, spAPEDecompress->GetInfo(APE_INFO_WAV_TERMINATING_BYTES)));
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
410
THROW_ON_ERROR(spAPECompress->Finish(NULL, 0, 0));
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
84
THROW_ON_ERROR(spInputSource->GetHeaderData(spBuffer.GetPtr()))
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
85
THROW_ON_ERROR(spAPECompress->Start(pOutputFilename, &WaveFormatEx, nAudioBytes,
src/add-ons/media/plugins/ape_reader/MAClib/APESimple.cpp
99
THROW_ON_ERROR(spAPECompress->AddDataFromInputSource(spInputSource.GetPtr(), nBytesLeft, &nBytesAdded))