• Home
  • Raw
  • Download

Lines Matching refs:propID

298     UInt32 index, PROPID propID, NCOM::CPropVariant &prop)  in GetProp()  argument
301 return getProp2(index, propID, &prop);; in GetProp()
302 return getProp(propID, &prop); in GetProp()
308 UInt32 index, PROPID propID, bool &res) in GetProp_Bool() argument
312 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_Bool()
323 UInt32 index, PROPID propID, UInt32 &res, bool &defined) in GetProp_UInt32() argument
328 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_UInt32()
342 UInt32 index, PROPID propID, UString &res) in GetProp_String() argument
346 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_String()
357 UInt32 index, PROPID propID, CByteBuffer &bb) in GetProp_RawData() argument
361 RINOK(GetProp(getProp, getProp2, index, propID, prop)); in GetProp_RawData()
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) in GetProperty() argument
832 return GetMethodProperty(index, propID, value); in GetProperty()
838 if (propID == NMethodPropID::kDecoderIsAssigned || in GetProperty()
839 propID == NMethodPropID::kEncoderIsAssigned) in GetProperty()
842 prop = (bool)((propID == NMethodPropID::kDecoderIsAssigned) ? in GetProperty()
849 return lib.GetMethodProperty(ci.CodecIndex, propID, value); in GetProperty()
911 STDMETHODIMP CCodecs::GetHasherProp(UInt32 index, PROPID propID, PROPVARIANT *value) in GetHasherProp() argument
915 return ::GetHasherProp(index, propID, value); in GetHasherProp()
920 return Libs[ci.LibIndex].ComHashers->GetHasherProp(ci.HasherIndex, propID, value); in GetHasherProp()