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

📄 vcdll.h

📁 jpeg and mpeg 编解码技术源代码
💻 H
字号:
// vcDll.h : main header file for the VCDLL DLL
//

#if !defined(AFX_VCDLL_H__989D0766_760C_11D4_9E81_ACF90B107662__INCLUDED_)
#define AFX_VCDLL_H__989D0766_760C_11D4_9E81_ACF90B107662__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

#include "resource.h"		// main symbols

/////////////////////////////////////////////////////////////////////////////
// CVcDllApp
// See vcDll.cpp for the implementation of this class
//

class CVcDllApp : public CWinApp
{
public:
	CVcDllApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CVcDllApp)
	//}}AFX_VIRTUAL

	//{{AFX_MSG(CVcDllApp)
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};


/////////////////////////////////////////////////////////////////////////////

#define LOGO_SIZE	96*32*3/2

typedef struct _CONFIGINFO
{
	int iVideoStandard;	// 0:NTSC, 1:PAL
	int iPictureSize;	// 0:SIF,  1:QSIF
	int iInputSource;	// 0:Src1, 1:Src2
	int iBitrate;		// video bit rate kbits/sec
	int iVCD;			// 0->User Format;1->VCD Format
	int iRecordMode;	// 0:video, 1:audio, 2:video&audio
	
	int iVideoCons;		// 0->Constant Quality; 1->Constant Bitrate
	int iConBiQuality;		// The Quality;
	int iConQuBitRate;  // The Basic Bitrate when Constant Quality
	int iVideoConsVal; 
	
	int iAudioBitrate;	// 0->112;1->128;2->160;3->192;4->224;5->256;6->320;7->384
	int iAudioSampleRate;// 0->44100
	
	int iAudioDelay;

	CString csFileName;

	int iVideoBri;
	int iVideoCta;
	int iVideoSta;
	int iVideoHue;

}CONFIGINFO, *PCONFIGINFO;

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_VCDLL_H__989D0766_760C_11D4_9E81_ACF90B107662__INCLUDED_)

⌨️ 快捷键说明

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