📄 devctxt.h
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
/*
** Copyright 2000-2003 Intel Corporation All Rights Reserved.
**
** Portions of the source code contained or described herein and all documents
** related to such source code (Material) are owned by Intel Corporation
** or its suppliers or licensors and is licensed by Microsoft Corporation for distribution.
** Title to the Material remains with Intel Corporation or its suppliers and licensors.
** Use of the Materials is subject to the terms of the Microsoft license agreement which accompanied the Materials.
** No other license under any patent, copyright, trade secret or other intellectual
** property right is granted to or conferred upon you by disclosure or
** delivery of the Materials, either expressly, by implication, inducement,
** estoppel or otherwise
** Some portion of the Materials may be copyrighted by Microsoft Corporation.
*/
#pragma once
#define SECONDARYGAINCLASSMAX 4
// number of classes affected by the device gain
#define SECONDARYDEVICEGAINCLASSMAX 2
class DeviceContext
{
public:
DeviceContext()
{
InitializeListHead(&m_StreamList);
m_dwGain = 0xFFFF;
m_bMono = FALSE;
m_dwDefaultStreamGain = 0xFFFF;
for (int i=0;i<SECONDARYGAINCLASSMAX;i++)
{
m_dwSecondaryGainLimit[i]=0xFFFF;
}
}
virtual BOOL IsSupportedFormat(LPWAVEFORMATEX lpFormat);
PBYTE TransferBuffer(PBYTE pBuffer, PBYTE pBufferEnd, DWORD *pNumStreams);
void NewStream(StreamContext *pStreamContext);
void DeleteStream(StreamContext *pStreamContext);
DWORD GetGain()
{
return m_dwGain;
}
DWORD SetGain(DWORD dwGain)
{
m_dwGain = dwGain;
RecalcAllGains();
return MMSYSERR_NOERROR;
}
BOOL GetMono()
{
return m_bMono;
}
DWORD SetMono(BOOL Mono)
{
m_bMono = Mono;
RecalcAllGains();
return MMSYSERR_NOERROR;
}
DWORD GetDefaultStreamGain()
{
return m_dwDefaultStreamGain;
}
DWORD SetDefaultStreamGain(DWORD dwGain)
{
m_dwDefaultStreamGain = dwGain;
return MMSYSERR_NOERROR;
}
DWORD GetSecondaryGainLimit(DWORD GainClass)
{
return m_dwSecondaryGainLimit[GainClass];
}
DWORD SetSecondaryGainLimit(DWORD GainClass, DWORD Limit)
{
if (GainClass>=SECONDARYGAINCLASSMAX)
{
return MMSYSERR_ERROR;
}
m_dwSecondaryGainLimit[GainClass]=Limit;
RecalcAllGains();
return MMSYSERR_NOERROR;
}
void RecalcAllGains();
DWORD OpenStream(LPWAVEOPENDESC lpWOD, DWORD dwFlags, StreamContext **ppStreamContext);
virtual DWORD GetExtDevCaps(PVOID pCaps, DWORD dwSize)=0;
virtual DWORD GetDevCaps(PVOID pCaps, DWORD dwSize)=0;
virtual void StreamReadyToRender(StreamContext *pStreamContext)=0;
virtual StreamContext *CreateStream(LPWAVEOPENDESC lpWOD)=0;
protected:
LIST_ENTRY m_StreamList; // List of streams rendering to/from this device
DWORD m_dwGain;
BOOL m_bMono;
DWORD m_dwDefaultStreamGain;
DWORD m_dwSecondaryGainLimit[SECONDARYGAINCLASSMAX];
};
class InputDeviceContext : public DeviceContext
{
public:
StreamContext *CreateStream(LPWAVEOPENDESC lpWOD);
DWORD GetExtDevCaps(PVOID pCaps, DWORD dwSize);
DWORD GetDevCaps(PVOID pCaps, DWORD dwSize);
void StreamReadyToRender(StreamContext *pStreamContext);
};
class OutputDeviceContext : public DeviceContext
{
public:
BOOL IsSupportedFormat(LPWAVEFORMATEX lpFormat);
StreamContext *CreateStream(LPWAVEOPENDESC lpWOD);
DWORD GetExtDevCaps(PVOID pCaps, DWORD dwSize);
DWORD GetDevCaps(PVOID pCaps, DWORD dwSize);
void StreamReadyToRender(StreamContext *pStreamContext);
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -