Searched refs:CreateEncoder (Results 1 - 8 of 8) sorted by relevance
/third_party/lzma/CPP/7zip/Compress/ |
H A D | CodecExports.cpp | 73 || (encode ? !codec.CreateEncoder : !codec.CreateDecoder)
in FindCodecClassId() 103 c = codec.CreateEncoder();
in CreateCoderMain() 133 if (encode ? !codec.CreateEncoder : !codec.CreateDecoder)
in CreateCoder2() 160 STDAPI CreateEncoder(UInt32 index, const GUID *iid, void **outObject);
161 STDAPI CreateEncoder(UInt32 index, const GUID *iid, void **outObject)
in CreateEncoder() function 217 if (codec.CreateEncoder)
in GetMethodProperty() 226 value->boolVal = BoolToVARIANT_BOOL(codec.CreateEncoder != NULL);
in GetMethodProperty()
|
/third_party/lzma/CPP/7zip/Common/ |
H A D | CreateCoder.cpp | 172 if ((encode ? codec.CreateEncoder : codec.CreateDecoder)
in FindMethod_Index() 214 if (codec.Id == methodId && (encode ? codec.CreateEncoder : codec.CreateDecoder))
in FindMethod_Index() 349 if (codec.CreateEncoder)
in CreateCoder_Index() 351 void *p = codec.CreateEncoder();
in CreateCoder_Index() 389 const HRESULT res = _externalCodecs->GetCodecs->CreateEncoder(i, &IID_ICompressCoder, (void **)&cod.Coder);
in CreateCoder_Index() 394 return _externalCodecs->GetCodecs->CreateEncoder(i, &IID_ICompressFilter, (void **)&filter);
in CreateCoder_Index() 397 return _externalCodecs->GetCodecs->CreateEncoder(i, &IID_ICompressCoder2, (void **)&cod.Coder2);
in CreateCoder_Index()
|
H A D | RegisterCodec.h | 15 CreateCodecP CreateEncoder;
member
|
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | LoadCodecs.cpp | 278 MY_GET_FUNC (lib.CreateEncoder, Func_CreateEncoder, lib.Lib, "CreateEncoder")
in LoadCodecs() 953 STDAPI CreateEncoder(UInt32 index, const GUID *iid, void **outObject);
1038 Z7_COM7F_IMF(CCodecs::CreateEncoder(UInt32 index, const GUID *iid, void **coder))
in CreateEncoder() function 1042 return CreateEncoder(index, iid, coder);
in CreateEncoder() 1050 if (lib.CreateEncoder)
in CreateEncoder() 1051 return lib.CreateEncoder(ci.CodecIndex, iid, (void **)coder);
in CreateEncoder() 1306 u.EncoderIsAssigned = (cod.CreateEncoder != NULL);
in Get_CodecsInfoUser_Vector()
|
H A D | LoadCodecs.h | 245 Func_CreateEncoder CreateEncoder;
member 263 CreateEncoder(NULL),
in CCodecLib()
|
/third_party/skia/src/ports/ |
H A D | SkImageEncoder_WIC.cpp | 125 hr = piImagingFactory->CreateEncoder(type, nullptr, &piEncoder); in SkEncodeImageWithWIC()
|
/third_party/lzma/CPP/7zip/ |
H A D | ICoder.h | 369 x(CreateEncoder(UInt32 index, const GUID *iid, void* *coder))
|
/third_party/lzma/CPP/7zip/UI/Console/ |
H A D | Main.cpp | 1134 so << (char)(cod.CreateEncoder ? 'E' : ' ');
|
Completed in 7 milliseconds