Lines Matching refs:propId
231 PROPID propId, CLSID &clsId, bool &isAssigned)
235 RINOK(getMethodProperty(index, propId, &prop));
298 UInt32 index, PROPID propID, NCOM::CPropVariant &prop)
301 return getProp2(index, propID, &prop);;
302 return getProp(propID, &prop);
308 UInt32 index, PROPID propID, bool &res)
312 RINOK(GetProp(getProp, getProp2, index, propID, prop));
323 UInt32 index, PROPID propID, UInt32 &res, bool &defined)
328 RINOK(GetProp(getProp, getProp2, index, propID, prop));
342 UInt32 index, PROPID propID, UString &res)
346 RINOK(GetProp(getProp, getProp2, index, propID, prop));
357 UInt32 index, PROPID propID, CByteBuffer &bb)
361 RINOK(GetProp(getProp, getProp2, index, propID, prop));
803 STDAPI GetMethodProperty(UInt32 codecIndex, PROPID propID, PROPVARIANT *value);
808 STDAPI GetHasherProp(UInt32 codecIndex, PROPID propID, PROPVARIANT *value);
828 STDMETHODIMP CCodecs::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *value)
832 return GetMethodProperty(index, propID, value);
838 if (propID == NMethodPropID::kDecoderIsAssigned ||
839 propID == NMethodPropID::kEncoderIsAssigned)
842 prop = (bool)((propID == NMethodPropID::kDecoderIsAssigned) ?
849 return lib.GetMethodProperty(ci.CodecIndex, propID, value);
911 STDMETHODIMP CCodecs::GetHasherProp(UInt32 index, PROPID propID, PROPVARIANT *value)
915 return ::GetHasherProp(index, propID, value);
920 return Libs[ci.LibIndex].ComHashers->GetHasherProp(ci.HasherIndex, propID, value);