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

📄 cfaac.h

📁 mpeg4 video codec mpeg4 video codec
💻 H
字号:
/*FAAC - codec plugin for CooleditCopyright (C) 2004 Antonio ForannaThis program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation.	This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY; without even the implied warranty ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.		You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.			The author can be contacted at:ntnfrn_email-temp@yahoo.it*/#ifndef _Cfaac_H#define _Cfaac_H// *********************************************************************************************#include <mp4.h>		// int32_t, ...#include <faad.h>		// FAAD2 version#ifdef MAIN	#undef MAIN#endif#ifdef SSR	#undef SSR#endif#ifdef LTP	#undef LTP#endif#include <faac.h>//#include <win32_ver.h>	// mpeg4ip version#include "CRegistry.h"#include "CTag.h"#include "Defines.h"	// my defines// *********************************************************************************************#ifdef	ADTS#undef	ADTS#define ADTS 1#endif// *********************************************************************************************#define REG_AUTO "Auto"#define DEF_AUTO true#define REG_WRITEMP4 "Write MP4"#define DEF_WRITEMP4 false#define REG_MPEGVER "MPEG version"#define DEF_MPEGVER MPEG4#define REG_PROFILE "Profile"#define DEF_PROFILE LOW#define REG_MIDSIDE "MidSide"#define DEF_MIDSIDE true#define REG_TNS "TNS"#define DEF_TNS true#define REG_LFE "LFE"#define DEF_LFE false#define REG_USEQUALTY "Use quality"#define DEF_USEQUALTY false#define REG_QUALITY "Quality"#define DEF_QUALITY 100#define REG_BITRATE "BitRate"#define DEF_BITRATE 0 /* quality on */#define REG_BANDWIDTH "BandWidth"#define DEF_BANDWIDTH 0#define REG_HEADER "Header"#define DEF_HEADER ADTS#define REG_OutFolder "Output folder"// *********************************************************************************************class CMyEncCfg{private:	bool SaveCfgOnDestroy;public:	CMyEncCfg(bool SaveOnDestroy=true) { getCfg(this); SaveCfgOnDestroy=SaveOnDestroy; }	virtual ~CMyEncCfg() { if(SaveCfgOnDestroy) setCfg(this); FreeCfg(this); }	void FreeCfg(CMyEncCfg *cfg) { Tag.FreeTag(); FREE_ARRAY(OutDir); }	void getCfg(CMyEncCfg *cfg);	void setCfg(CMyEncCfg *cfg);	bool					AutoCfg,							UseQuality,							SaveMP4;	char					*OutDir;	faacEncConfiguration	EncCfg;	CMP4Tag					Tag;	BYTE					TagOn;};// -----------------------------------------------------------------------------------------------typedef struct output_tag  // any special vars associated with output file{// MP4MP4FileHandle 	MP4File;MP4TrackId		MP4track;MP4Duration		TotalSamples,				WrittenSamples,				encoded_samples;DWORD			frameSize,				ofs;// AACFILE			*aacFile;char			*Filename;// GLOBALlong			Samprate;WORD			BitsPerSample;WORD			Channels;DWORD			srcSize;//char			*dst_name;		// name of compressed filefaacEncHandle	hEncoder;int32_t			*buf32bit;BYTE			*bufIn;unsigned char	*bitbuf;long			bytes_into_buffer;DWORD			maxBytesOutput;long			samplesInput,				samplesInputSize;bool			WriteMP4;} MYOUTPUT;// *********************************************************************************************class Cfaac{private:	virtual void DisplayError(char *ProcName, char *str);	virtual HANDLE ERROR_Init(char *str) { DisplayError("Init", str); return NULL; }	virtual int ERROR_processData(char *str) { DisplayError("processData", str); return -1; }	virtual void showInfo(MYOUTPUT *mi) {}	virtual void showProgress(MYOUTPUT *mi) {}	void To32bit(int32_t *buf, BYTE *bufi, int size, BYTE samplebytes, BYTE bigendian);public:    Cfaac(HANDLE hOutput=NULL);    virtual ~Cfaac();    virtual HANDLE Init(LPSTR lpstrFilename,long lSamprate,WORD wBitsPerSample,WORD wChannels,long FileSize);    virtual int processData(HANDLE hOutput, BYTE *bufIn, DWORD len);	virtual int processDataBufferized(HANDLE hOutput, BYTE *bufIn, long lBytes);/*// AAC	bool            BlockSeeking;// GLOBAL	long            newpos_ms;	BOOL            IsSeekable;	MYINPUT			*mi;*/	HANDLE			hOutput;};#endif

⌨️ 快捷键说明

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