Lines Matching refs:tmpname
791 const std::string * tmpname = iterateElmt->Attribute("location");
792 if (tmpname != NULL)
794 DllLocation = *tmpname;
928 const std::string * tmpname = tmpNode->Attribute("name");
929 if (tmpname->compare(config_name) == 0)
970 const std::string * tmpname = iterateElmt->Attribute("name");
971 if ((tmpname != NULL) && (tmpname->compare(config_name) == 0))
981 const std::string * tmpname;
987 tmpname = tmpElt->Attribute("use");
988 if (tmpname != NULL)
989 bSmartOutput = (tmpname->compare("true") == 0);
991 tmpname = tmpElt->Attribute("ratio");
992 if (tmpname != NULL)
993 SmartRatioMax = atof(tmpname->c_str());
1000 tmpname = tmpElt->Attribute("use");
1001 if (tmpname != NULL)
1002 bAbrOutput = (tmpname->compare("true") == 0);
1004 tmpname = tmpElt->Attribute("min");
1005 if (tmpname != NULL)
1006 AverageBitrate_Min = atoi(tmpname->c_str());
1008 tmpname = tmpElt->Attribute("max");
1009 if (tmpname != NULL)
1010 AverageBitrate_Max = atoi(tmpname->c_str());
1012 tmpname = tmpElt->Attribute("step");
1013 if (tmpname != NULL)
1014 AverageBitrate_Step = atoi(tmpname->c_str());
1021 tmpname = tmpElt->Attribute("use");
1022 if (tmpname != NULL)
1023 bCopyright = (tmpname->compare("true") == 0);
1030 tmpname = tmpElt->Attribute("use");
1031 if (tmpname != NULL)
1032 bCRC = (tmpname->compare("true") == 0);
1039 tmpname = tmpElt->Attribute("use");
1040 if (tmpname != NULL)
1041 bOriginal = (tmpname->compare("true") == 0);
1048 tmpname = tmpElt->Attribute("use");
1049 if (tmpname != NULL)
1050 bPrivate = (tmpname->compare("true") == 0);
1057 tmpname = tmpElt->Attribute("use");
1058 if (tmpname != NULL)
1059 bNoBitRes = !(tmpname->compare("true") == 0);
1064 tmpname = tmpElt->Attribute("min");
1065 if (tmpname != NULL)
1067 unsigned int uitmp = atoi(tmpname->c_str());
1078 tmpname = tmpElt->Attribute("max");
1079 if (tmpname != NULL)
1081 unsigned int uitmp = atoi(tmpname->c_str());
1097 tmpname = tmpElt->Attribute("use");
1098 if (tmpname != NULL)
1099 bResample = (tmpname->compare("true") == 0);
1116 tmpname = tmpElt->Attribute("use");
1117 if (tmpname != NULL)
1119 if (tmpname->compare("ABR") == 0)
1121 else if (tmpname->compare("true") == 0)
1127 tmpname = tmpElt->Attribute("header");
1128 if (tmpname != NULL)
1129 bXingFrame = (tmpname->compare("true") == 0);
1131 tmpname = tmpElt->Attribute("quality");
1132 if (tmpname != NULL)
1134 VbrQuality = atoi(tmpname->c_str());
1137 tmpname = tmpElt->Attribute("average");
1138 if (tmpname != NULL)
1140 AverageBitrate = atoi(tmpname->c_str());
1172 tmpname = tmpElt->Attribute("force");
1173 if (tmpname != NULL)
1174 bForceChannel = (tmpname->compare("true") == 0);
1821 const std::string * tmpname = iterateElmt->Attribute("name");
1825 if (tmpname != NULL)
1827 if (tmpname->compare(CurrentConfigName) == 0)
1871 const std::string * tmpname = iterateElmt->Attribute("name");
1875 if (tmpname != NULL)
1877 if (tmpname->compare(config_name) == 0)
1933 const std::string * tmpname = iterateElmt->Attribute("name");
1937 if (tmpname != NULL)
1939 // SendMessage(GetDlgItem( HwndDlg, IDC_COMBO_SETTINGS), CB_ADDSTRING, NULL, (LPARAM) tmpname->c_str());
1940 if (tmpname->compare(CurrentConfig) == 0)
1943 SelectSavedParams(*tmpname);