Lines Matching full:cdecoder
27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false),
42 CDecoder::~CDecoder()
48 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
49 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
51 HRESULT CDecoder::CreateInputBuffer()
64 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
71 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize)
81 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize)
90 HRESULT CDecoder::CodeSpec(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress)
173 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
184 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_OK; }
185 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; }
187 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
228 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress)
234 HRESULT CDecoder::ReadFromInputStream(void *data, UInt32 size, UInt32 *processedSize)