⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 amr_prop.h

📁 MONOGRAM AMR Encoder v1.0.0.0
💻 H
字号:
//-----------------------------------------------------------------------------
//
//	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -