Home | History | Annotate | Download | only in Common

Lines Matching full:propid

186     PROPID propId, CLSID &clsId, bool &isAssigned)

190 RINOK(getMethodProperty(index, propId, &prop));
248 UInt32 index, PROPID propID, NCOM::CPropVariant &prop)
251 return getProp2(index, propID, &prop);;
252 return getProp(propID, &prop);
258 UInt32 index, PROPID propID, bool &res)
262 RINOK(GetProp(getProp, getProp2, index, propID, prop));
273 UInt32 index, PROPID propID, UInt32 &res, bool &defined)
278 RINOK(GetProp(getProp, getProp2, index, propID, prop));
292 UInt32 index, PROPID propID, UString &res)
296 RINOK(GetProp(getProp, getProp2, index, propID, prop));
307 UInt32 index, PROPID propID, CByteBuffer &bb)
311 RINOK(GetProp(getProp, getProp2, index, propID, prop));
682 STDAPI GetMethodProperty(UInt32 codecIndex, PROPID propID, PROPVARIANT *value);
687 STDAPI GetHasherProp(UInt32 codecIndex, PROPID propID, PROPVARIANT *value);
707 STDMETHODIMP CCodecs::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *value)
711 return GetMethodProperty(index, propID, value);
717 if (propID == NMethodPropID::kDecoderIsAssigned ||
718 propID == NMethodPropID::kEncoderIsAssigned)
721 prop = (propID == NMethodPropID::kDecoderIsAssigned) ?
727 return Libs[ci.LibIndex].GetMethodProperty(ci.CodecIndex, propID, value);
775 STDMETHODIMP CCodecs::GetHasherProp(UInt32 index, PROPID propID, PROPVARIANT *value)
779 return ::GetHasherProp(index, propID, value);
784 return Libs[ci.LibIndex].Hashers->GetHasherProp(ci.HasherIndex, propID, value);