Home | History | Annotate | Download | only in Common

Lines Matching refs:PROPID

89 typedef UInt32 (WINAPI *GetHandlerPropertyFunc)(PROPID propID, PROPVARIANT *value);

90 typedef UInt32 (WINAPI *GetHandlerPropertyFunc2)(UInt32 index, PROPID propID, PROPVARIANT *value);
96 PROPID propId, CLSID &clsId, bool &isAssigned)
100 RINOK(getMethodProperty(index, propId, &prop));
142 UInt32 index, PROPID propID, NCOM::CPropVariant &prop)
145 return getProp2(index, propID, &prop);;
146 return getProp(propID, &prop);
152 UInt32 index, PROPID propID, bool &res)
155 RINOK(ReadProp(getProp, getProp2, index, propID, prop));
166 UInt32 index, PROPID propID, UString &res)
169 RINOK(ReadProp(getProp, getProp2, index, propID, prop));
521 STDAPI GetMethodProperty(UInt32 codecIndex, PROPID propID, PROPVARIANT *value);
535 STDMETHODIMP CCodecs::GetProperty(UInt32 index, PROPID propID, PROPVARIANT *value)
539 return GetMethodProperty(index, propID, value);
548 if (propID == NMethodPropID::kDecoderIsAssigned)
555 if (propID == NMethodPropID::kEncoderIsAssigned)
562 return Libs[ci.LibIndex].GetMethodProperty(ci.CodecIndex, propID, value);