Lines Matching refs:m_pAEProps
63 m_pAEProps(NULL)
76 ASSERT(m_pAEProps == NULL);
80 HRESULT hr = pUnknown->QueryInterface(IID_IAudioEncoderProperties,(void **)&m_pAEProps);
81 if (FAILED(hr) || !m_pAEProps)
84 ASSERT(m_pAEProps);
87 // m_pAEProps->LoadAudioEncoderPropertiesFromRegistry();
89 m_pAEProps->get_EnforceVBRmin(&m_dwEnforceVBRmin);
90 m_pAEProps->get_VoiceMode(&m_dwVoiceMode);
91 m_pAEProps->get_KeepAllFreq(&m_dwKeepAllFreq);
92 m_pAEProps->get_StrictISO(&m_dwStrictISO);
93 m_pAEProps->get_NoShortBlock(&m_dwNoShortBlock);
94 m_pAEProps->get_XingTag(&m_dwXingTag);
95 m_pAEProps->get_ChannelMode(&m_dwChannelMode);
96 m_pAEProps->get_ForceMS(&m_dwForceMS);
97 m_pAEProps->get_ModeFixed(&m_dwModeFixed);
98 m_pAEProps->get_SampleOverlap(&m_dwOverlap);
99 m_pAEProps->get_SetDuration(&m_dwSetStop);
112 if (m_pAEProps == NULL)
115 m_pAEProps->set_EnforceVBRmin(m_dwEnforceVBRmin);
116 m_pAEProps->set_VoiceMode(m_dwVoiceMode);
117 m_pAEProps->set_KeepAllFreq(m_dwKeepAllFreq);
118 m_pAEProps->set_StrictISO(m_dwStrictISO);
119 m_pAEProps->set_NoShortBlock(m_dwNoShortBlock);
120 m_pAEProps->set_XingTag(m_dwXingTag);
121 m_pAEProps->set_ChannelMode(m_dwChannelMode);
122 m_pAEProps->set_ForceMS(m_dwForceMS);
123 m_pAEProps->set_ModeFixed(m_dwModeFixed);
124 m_pAEProps->set_SampleOverlap(m_dwOverlap);
125 m_pAEProps->set_SetDuration(m_dwSetStop);
126 m_pAEProps->SaveAudioEncoderPropertiesToRegistry();
128 m_pAEProps->Release();
129 m_pAEProps = NULL;
180 m_pAEProps->set_ChannelMode(dwChannelMode);
186 m_pAEProps->set_EnforceVBRmin(IsDlgButtonChecked(hwnd, IDC_CHECK_ENFORCE_MIN));
191 m_pAEProps->set_VoiceMode(IsDlgButtonChecked(hwnd, IDC_CHECK_VOICE));
196 m_pAEProps->set_KeepAllFreq(IsDlgButtonChecked(hwnd, IDC_CHECK_KEEP_ALL_FREQ));
201 m_pAEProps->set_StrictISO(IsDlgButtonChecked(hwnd, IDC_CHECK_STRICT_ISO));
206 m_pAEProps->set_NoShortBlock(IsDlgButtonChecked(hwnd, IDC_CHECK_DISABLE_SHORT_BLOCK));
211 m_pAEProps->set_XingTag(IsDlgButtonChecked(hwnd, IDC_CHECK_XING_TAG));
216 m_pAEProps->set_ForceMS(IsDlgButtonChecked(hwnd, IDC_CHECK_FORCE_MS));
221 m_pAEProps->set_ModeFixed(IsDlgButtonChecked(hwnd, IDC_CHECK_MODE_FIXED));
226 m_pAEProps->set_SampleOverlap(IsDlgButtonChecked(hwnd, IDC_CHECK_OVERLAP));
231 m_pAEProps->set_SetDuration(IsDlgButtonChecked(hwnd, IDC_CHECK_STOP));
253 m_pAEProps->get_EnforceVBRmin(&m_dwEnforceVBRmin);
254 m_pAEProps->get_VoiceMode(&m_dwVoiceMode);
255 m_pAEProps->get_KeepAllFreq(&m_dwKeepAllFreq);
256 m_pAEProps->get_StrictISO(&m_dwStrictISO);
257 m_pAEProps->get_ChannelMode(&m_dwChannelMode);
258 m_pAEProps->get_ForceMS(&m_dwForceMS);
259 m_pAEProps->get_NoShortBlock(&m_dwNoShortBlock);
260 m_pAEProps->get_XingTag(&m_dwXingTag);
261 m_pAEProps->get_ModeFixed(&m_dwModeFixed);
262 m_pAEProps->get_SampleOverlap(&m_dwOverlap);
263 m_pAEProps->get_SetDuration(&m_dwSetStop);
264 m_pAEProps->SaveAudioEncoderPropertiesToRegistry();
266 m_pAEProps->ApplyChanges();
282 m_pAEProps->get_ChannelMode(&dwChannelMode);
294 m_pAEProps->get_EnforceVBRmin(&dwEnforceVBRmin);
298 m_pAEProps->get_VoiceMode(&dwVoiceMode);
302 m_pAEProps->get_KeepAllFreq(&dwKeepAllFreq);
306 m_pAEProps->get_StrictISO(&dwStrictISO);
310 m_pAEProps->get_NoShortBlock(&dwNoShortBlock);
314 m_pAEProps->get_XingTag(&dwXingEnabled);
318 m_pAEProps->get_ForceMS(&dwForceMS);
322 m_pAEProps->get_ModeFixed(&dwModeFixed);
326 m_pAEProps->get_SampleOverlap(&dwOverlap);
330 m_pAEProps->get_SetDuration(&dwStopTime);