Lines Matching refs:propID
89 typedef UInt32 (WINAPI *GetHandlerPropertyFunc)(PROPID propID, PROPVARIANT *value);
90 typedef UInt32 (WINAPI *GetHandlerPropertyFunc2)(UInt32 index, PROPID propID, PROPVARIANT *value);
142 UInt32 index, PROPID propID, NCOM::CPropVariant &prop) in ReadProp() argument
145 return getProp2(index, propID, &prop);; in ReadProp()
146 return getProp(propID, &prop); in ReadProp()
152 UInt32 index, PROPID propID, bool &res) in ReadBoolProp() argument
155 RINOK(ReadProp(getProp, getProp2, index, propID, prop)); in ReadBoolProp()
166 UInt32 index, PROPID propID, UString &res) in ReadStringProp() argument
169 RINOK(ReadProp(getProp, getProp2, index, propID, prop)); in ReadStringProp()
521 STDAPI GetMethodProperty(UInt32 codecIndex, PROPID propID, PROPVARIANT *value);
535 STDMETHODIMP CCodecs::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *value) in GetProperty() argument
539 return GetMethodProperty(index, propID, value); in GetProperty()
548 if (propID == NMethodPropID::kDecoderIsAssigned) in GetProperty()
555 if (propID == NMethodPropID::kEncoderIsAssigned) in GetProperty()
562 return Libs[ci.LibIndex].GetMethodProperty(ci.CodecIndex, propID, value); in GetProperty()