Lines Matching refs:bitrate
62 { IDC_CHECK_ENC_ABR, "Allow encoding with an average bitrate\r\ninstead of a constant one.\r\n\r\nIt can improve the quality for the same bitrate." },
69 { IDC_CHECK_ENC_SMART, "Disable bitrate when there is too much compression.\r\n(default 1:15 ratio)" },
289 inline const int AEncodeProperties::GetBitrateValueMPEG2(DWORD & bitrate) const
297 bitrate = the_MPEG2_Bitrates[i];
302 bitrate = the_MPEG2_Bitrates[i];
307 bitrate = 160;
311 inline const int AEncodeProperties::GetBitrateValueMPEG1(DWORD & bitrate) const
319 bitrate = the_MPEG1_Bitrates[i];
324 bitrate = the_MPEG1_Bitrates[i];
329 bitrate = 32;
333 const int AEncodeProperties::GetBitrateValue(DWORD & bitrate, const DWORD MPEG_Version) const
339 return GetBitrateValueMPEG2(bitrate);
341 return GetBitrateValueMPEG1(bitrate);
1063 tmpElt = iterateElmt->FirstChildElement("bitrate");
1428 tmpElt = the_element->FirstChildElement("bitrate");
1431 tmpElt = new TiXmlElement("bitrate");