Lines Matching defs:CDecoder
27 CDecoder::CDecoder(): _inBuf(0), _propsWereSet(false), _outSizeDefined(false),
38 CDecoder::~CDecoder()
44 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
45 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
47 HRESULT CDecoder::CreateInputBuffer()
60 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
67 void CDecoder::SetOutStreamSizeResume(const UInt64 *outSize)
77 STDMETHODIMP CDecoder::SetOutStreamSize(const UInt64 *outSize)
86 STDMETHODIMP CDecoder::SetFinishMode(UInt32 finishMode)
92 HRESULT CDecoder::CodeSpec(ISequentialInStream *inStream, ISequentialOutStream *outStream, ICompressProgressInfo *progress)
175 STDMETHODIMP CDecoder::Code(ISequentialInStream *inStream, ISequentialOutStream *outStream,
186 STDMETHODIMP CDecoder::SetInStream(ISequentialInStream *inStream) { _inStream = inStream; return S_OK; }
187 STDMETHODIMP CDecoder::ReleaseInStream() { _inStream.Release(); return S_OK; }
189 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
230 HRESULT CDecoder::CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *progress)
236 HRESULT CDecoder::ReadFromInputStream(void *data, UInt32 size, UInt32 *processedSize)