Searched refs:pwfeInput (Results 1 – 7 of 7) sorted by relevance
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/ |
H A D | APECompressCreate.cpp | 16 int CAPECompressCreate::Start(CIO * pioOutput, const WAVEFORMATEX * pwfeInput, int nMaxAudioBytes, … in Start() argument 19 if (pioOutput == NULL || pwfeInput == NULL) in Start() 23 if ((pwfeInput->nChannels != 1) && (pwfeInput->nChannels != 2)) in Start() 27 …if ((pwfeInput->wBitsPerSample != 8) && (pwfeInput->wBitsPerSample != 16) && (pwfeInput->wBitsPerS… in Start() 40 …m_spAPECompressCore.Assign(new CAPECompressCore(m_spIO, pwfeInput, m_nSamplesPerFrame, nCompressio… in Start() 43 memcpy(&m_wfeInput, pwfeInput, sizeof(WAVEFORMATEX)); in Start() 54 uint32 nMaxAudioBlocks = nMaxAudioBytes / pwfeInput->nBlockAlign; in Start() 113 int CAPECompressCreate::InitializeFile(CIO * pIO, const WAVEFORMATEX * pwfeInput, int nMaxFrames, i… in InitializeFile() argument 116 if (pIO == NULL || pwfeInput == NULL || nMaxFrames <= 0) in InitializeFile() 135 APEHeader.nBitsPerSample = pwfeInput->wBitsPerSample; in InitializeFile() [all …]
|
H A D | APECompress.cpp | 31 int CAPECompress::Start(const char* pOutputFilename, const WAVEFORMATEX * pwfeInput, int nMaxAudioB… in Start() argument 41 m_spAPECompressCreate->Start(m_pioOutput, pwfeInput, nMaxAudioBytes, nCompressionLevel, in Start() 47 memcpy(&m_wfeInput, pwfeInput, sizeof(WAVEFORMATEX)); in Start() 52 int CAPECompress::StartEx(CIO * pioOutput, const WAVEFORMATEX * pwfeInput, int nMaxAudioBytes, int … in StartEx() argument 57 m_spAPECompressCreate->Start(m_pioOutput, pwfeInput, nMaxAudioBytes, nCompressionLevel, in StartEx() 63 memcpy(&m_wfeInput, pwfeInput, sizeof(WAVEFORMATEX)); in StartEx()
|
H A D | APECompressCreate.h | 14 …int InitializeFile(CIO * pIO, const WAVEFORMATEX * pwfeInput, int nMaxFrames, int nCompressionLeve… 19 …int Start(CIO * pioOutput, const WAVEFORMATEX * pwfeInput, int nMaxAudioBytes, int nCompressionLev…
|
H A D | APECompress.h | 18 …int Start(const char* pOutputFilename, const WAVEFORMATEX * pwfeInput, int nMaxAudioBytes, int nCo… 19 …int StartEx(CIO * pioOutput, const WAVEFORMATEX * pwfeInput, int nMaxAudioBytes, int nCompressionL…
|
H A D | APECompressCore.cpp | 8 CAPECompressCore::CAPECompressCore(CIO * pIO, const WAVEFORMATEX * pwfeInput, int nMaxFrameBlocks, … in CAPECompressCore() argument 18 memcpy(&m_wfeInput, pwfeInput, sizeof(WAVEFORMATEX)); in CAPECompressCore()
|
H A D | APECompressCore.h | 16 …CAPECompressCore(CIO * pIO, const WAVEFORMATEX * pwfeInput, int nMaxFrameBlocks, int nCompressionL…
|
H A D | MACLib.h | 312 virtual int Start(const str_utf16 * pOutputFilename, const WAVEFORMATEX * pwfeInput, 316 virtual int StartEx(CIO * pioOutput, const WAVEFORMATEX * pwfeInput,
|