amr_prop.h

来自「MONOGRAM AMR Encoder v1.0.0.0」· C头文件 代码 · 共 47 行

H
47
字号
//-----------------------------------------------------------------------------
//
//	Monogram AMR Encoder
//
//	Base on the 3GPP source codes for AMR
//
//	Author : Igor Janos
//
//-----------------------------------------------------------------------------
#pragma once


//-----------------------------------------------------------------------------
//
//	CAMRPropertyPage class
//
//-----------------------------------------------------------------------------
class CAMRPropertyPage : 
	public CBasePropertyPage
{
public:

	// enkoder
	IMonogramAMREncoder		*encoder;

	void UpdateStats();
public:
	CAMRPropertyPage(LPUNKNOWN lpUnk, HRESULT *phr);
	virtual ~CAMRPropertyPage();
	static CUnknown *WINAPI CreateInstance(LPUNKNOWN lpUnk, HRESULT *phr);

	// CBasePropertyPage
	HRESULT OnConnect(IUnknown *pUnknown);
	HRESULT OnDisconnect();
	HRESULT OnActivate();
	HRESULT OnDeactivate();
	HRESULT OnApplyChanges();

	// message
	INT_PTR OnReceiveMessage(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam);

	// IMonogramAACEncoderPropertyPage
	void SetDirty();

};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?