• Home
  • Raw
  • Download

Lines Matching refs:prop

34   NWindows::NCOM::CPropVariant prop;  in ReadNumberOfStreams()  local
35 RINOK(codecsInfo->GetProperty(index, propID, &prop)); in ReadNumberOfStreams()
36 if (prop.vt == VT_EMPTY) in ReadNumberOfStreams()
38 else if (prop.vt == VT_UI4) in ReadNumberOfStreams()
39 res = prop.ulVal; in ReadNumberOfStreams()
47 NWindows::NCOM::CPropVariant prop; in ReadIsAssignedProp() local
48 RINOK(codecsInfo->GetProperty(index, propID, &prop)); in ReadIsAssignedProp()
49 if (prop.vt == VT_EMPTY) in ReadIsAssignedProp()
51 else if (prop.vt == VT_BOOL) in ReadIsAssignedProp()
52 res = VARIANT_BOOLToBool(prop.boolVal); in ReadIsAssignedProp()
67 NWindows::NCOM::CPropVariant prop; in LoadCodecs() local
68 RINOK(GetCodecs->GetProperty(i, NMethodPropID::kID, &prop)); in LoadCodecs()
72 if (prop.vt != VT_UI8) in LoadCodecs()
74 info.Id = prop.uhVal.QuadPart; in LoadCodecs()
75 prop.Clear(); in LoadCodecs()
77 RINOK(GetCodecs->GetProperty(i, NMethodPropID::kName, &prop)); in LoadCodecs()
78 if (prop.vt == VT_BSTR) in LoadCodecs()
79 info.Name = prop.bstrVal; in LoadCodecs()
80 else if (prop.vt != VT_EMPTY) in LoadCodecs()
97 NWindows::NCOM::CPropVariant prop; in LoadCodecs() local
98 RINOK(GetHashers->GetHasherProp(i, NMethodPropID::kID, &prop)); in LoadCodecs()
99 if (prop.vt != VT_UI8) in LoadCodecs()
101 info.Id = prop.uhVal.QuadPart; in LoadCodecs()
102 prop.Clear(); in LoadCodecs()
104 RINOK(GetHashers->GetHasherProp(i, NMethodPropID::kName, &prop)); in LoadCodecs()
105 if (prop.vt == VT_BSTR) in LoadCodecs()
106 info.Name = prop.bstrVal; in LoadCodecs()
107 else if (prop.vt != VT_EMPTY) in LoadCodecs()