📄 configur.c
字号:
//==========================================================================;
//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
// PURPOSE.
//
// Copyright (c) 1992-1998 G&G Lab Corporation
//
//--------------------------------------------------------------------------;
//
// Configur.c
//
// Description:
// IMA ADPCM ACM Configururation init and dialog
//
//
// The Configururation parameters for this ACM are:
//
// MaxRTEncodeSetting:
// MaxRTDecodeSetting:
// These determine the highest mono sample rate that
// the ACM will attempt to convert in real-time.
//
// PercentCPU:
// This Configururation parameter is not normally changed
// by the user and is not presented in the Configur dialog.
// This value affects the Configur dialog's 'Auto-Configur'
// calculation of MaxRTXxcodeSetting.
//
// These parameters may be set in the registry, using the IMAAlgorith subkey
// (which corresponds to the alias name used for installation) under
// the following key:
//
// HKEY_CURRENT_USER\Software\G&G Lab\Multimedia
//
//
// Note: The Configururation dialog is only compiled into the code if the
// IMAALGORITH_USECONFIGUR symbol is defined. This is designed to make it
// easy to remove the dialog box completely for certain platforms,
// such as MIPS and Alpha under Windows NT.
//
//==========================================================================;
#include <windows.h>
#include <windowsx.h>
#include <mmsystem.h>
#include <mmreg.h>
#include <msacm.h>
#include <msacmdrv.h>
#include "MathHelp32.h"
#include "ACM.h"
#include "IMAAlgorith.h"
#include "debug.h"
#ifdef WIN32
#include <tchar.h>
#else
#define _tcstoul strtoul
#define _tcsncpy _fstrncpy
#endif
#include <string.h>
#include <stdlib.h>
#ifndef WIN32
#error Win16 support has been dropped from this ACM! Compile for Win32.
#endif
#ifdef IMAALGORITH_USECONFIGUR
//
// Strings required to access Configururation information in the registry.
//
const TCHAR BCODE gszMaxRTEncodeSetting[] = TEXT("MaxRTEncodeSetting");
const TCHAR BCODE gszMaxRTDecodeSetting[] = TEXT("MaxRTDecodeSetting");
const TCHAR BCODE gszPercentCPU[] = TEXT("PercentCPU");
const TCHAR gszMultimediaKey[] = TEXT("Software\\G&G Lab\\Multimedia\\");
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
//
// Be careful changing the following!
//
//!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
//
// Data required to access the dialog box help.
//
// Note that you must write your own help file for your ACM, even if
// the Configururation dialog box looks identical. If you use the file
// listed here, then the title will say "IMA ADPCM" or something.
//
// Note: the number HELPCONTEXT_IMAALGORITH must be unique in the file
// gszHelpFilename, and the number must defined in the [MAP]
// section of the .hpj help project file. Then the .rtf file
// will reference that number (using the keyword defined in
// the .hpj file). Then when we call WinHelp with the number,
// WinHelp will go to the right help entry.
//
const TCHAR BCODE gszHelpFilename[] = TEXT("audiocdc.hlp");
#define HELPCONTEXT_IMAALGORITH 1001
#define IDH_AUDIOCDC_COMPRESSION 100
#define IDH_AUDIOCDC_DECOMPRESSION 200
#define IDH_AUDIOCDC_AUTOCONFIGURURE 300
static int aKeyWordIds[] = {
IDC_COMBO_MAXRTENCODE, IDH_AUDIOCDC_COMPRESSION,
IDC_STATIC_COMPRESS, IDH_AUDIOCDC_COMPRESSION,
IDC_COMBO_MAXRTDECODE, IDH_AUDIOCDC_DECOMPRESSION,
IDC_STATIC_DECOMPRESS, IDH_AUDIOCDC_DECOMPRESSION,
IDC_BTN_AUTOCONFIGUR, IDH_AUDIOCDC_AUTOCONFIGURURE,
0, 0
};
//==========================================================================;
//
//
//
//
//==========================================================================;
//--------------------------------------------------------------------------;
//
// VOID ConfigurWriteConfigururation
//
// Description:
//
// This routine writes the Configururation data in PDI to the registry.
// This consists of the max real-time Encode and Decode settings.
//
// Arguments:
// PDRIVERINSTANCE pdi
//
// Return (VOID): None.
//
//--------------------------------------------------------------------------;
VOID ConfigurWriteConfigururation
(
PDRIVERINSTANCE pdi
)
{
DWORD dw;
if( NULL != pdi->hkey )
{
dw = (DWORD)pdi->nConfigurMaxRTEncodeSetting;
(void)RegSetValueEx( pdi->hkey, (LPTSTR)gszMaxRTEncodeSetting, 0,
REG_DWORD, (LPBYTE)&dw, sizeof(DWORD) );
dw = (DWORD)pdi->nConfigurMaxRTDecodeSetting;
(void)RegSetValueEx( pdi->hkey, (LPTSTR)gszMaxRTDecodeSetting, 0,
REG_DWORD, (LPBYTE)&dw, sizeof(DWORD) );
}
}
//--------------------------------------------------------------------------;
//
// DWORD dwReadRegistryDefault
//
// Description:
//
// This routine reads a given value from the registry, and returns a
// default value if the read is not successful.
//
// Arguments:
// HKEY hkey: Registry key to read from.
// LPTSTR lpszEntry:
// DWORD dwDefault:
//
// Return (DWORD):
//
//--------------------------------------------------------------------------;
INLINE DWORD dwReadRegistryDefault
(
HKEY hkey,
LPTSTR lpszEntry,
DWORD dwDefault
)
{
DWORD dwType = (DWORD)~REG_DWORD; // Init to anything but REG_DWORD.
DWORD cbSize = sizeof(DWORD);
DWORD dwRet;
LONG lError;
ASSERT( NULL != hkey );
ASSERT( NULL != lpszEntry );
lError = RegQueryValueEx( hkey,
lpszEntry,
NULL,
&dwType,
(LPBYTE)&dwRet,
&cbSize );
if( ERROR_SUCCESS != lError || REG_DWORD != dwType )
dwRet = dwDefault;
return dwRet;
}
//--------------------------------------------------------------------------;
//
// VOID ConfigurSetDefaults
//
// Description:
//
// This routine sets the Configururation parameters to their default
// values.
//
// Arguments:
// PDRIVERINSTANCE pdi:
//
//--------------------------------------------------------------------------;
VOID ConfigurSetDefaults
(
PDRIVERINSTANCE pdi
)
{
pdi->nConfigurMaxRTEncodeSetting =
IMAALGORITH_CONFIGUR_DEFAULT_MAXRTENCODESETTING;
pdi->nConfigurMaxRTDecodeSetting =
IMAALGORITH_CONFIGUR_DEFAULT_MAXRTDECODESETTING;
pdi->nConfigurPercentCPU =
IMAALGORITH_CONFIGUR_DEFAULT_PERCENTCPU;
}
//--------------------------------------------------------------------------;
//
// UINT ConfigurAutoConfigur
//
// Description:
//
// We will determine how much time it takes to encode and then decode
// 2 seconds of data and use this to guess at the max sample
// rate we can convert in real-time.
//
// The max is computed with essentially 100% of the CPU. Practically,
// we won't have 100% of the CPU available. So we take a percentage
// of the computed max and use that as the max in the Configur dialog.
//
// The percentage that we use can be set in the ini file IMAAlgorith
// section by PercentCPU=xx.
//
//
// Arguments:
// HWND hwnd:
//
// Return (UINT): String identifier (IDS) of error message, or zero if
// the call succeeded.
//
//--------------------------------------------------------------------------;
UINT FNLOCAL ConfigurAutoConfigur
(
PDRIVERINSTANCE pdi,
UINT *pnEncodeSetting,
UINT *pnDecodeSetting
)
{
LPPCMWAVEFORMAT pwfPCM = NULL;
LPIMAALGORITHWAVEFORMAT pwfADPCM = NULL;
LPACMDRVFORMATSUGGEST padfs = NULL;
LPACMDRVSTREAMINSTANCE padsi = NULL;
LPACMDRVSTREAMHEADER padsh = NULL;
LPACMDRVSTREAMSIZE padss = NULL;
PSTREAMINSTANCE psi = NULL;
LPBYTE pBufPCM;
LPBYTE pBufADPCM;
DWORD cbPCM;
DWORD cbADPCM;
DWORD dwEncodeTime;
DWORD dwDecodeTime;
DWORD dwStartTime;
DWORD dwMaxEncodeRate;
DWORD dwMaxDecodeRate;
UINT nConfigur;
UINT uIDS;
HCURSOR hCursorSave;
//
// We divide by this!
//
ASSERT( 0 != pdi->nConfigurPercentCPU );
uIDS = 0; // No errors yet - this is our "success" return.
//
// This function may take a while. Set hour glass cursor
//
hCursorSave = SetCursor(LoadCursor(NULL, IDC_WAIT));
//
// Set up the input PCM wave format structure.
//
pwfPCM = (LPPCMWAVEFORMAT)GlobalAllocPtr( GPTR, sizeof(*pwfPCM) );
if( NULL == pwfPCM )
{
uIDS = IDS_ERROR_NOMEM;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -