shithub: aacenc

ref: c0245f454bd6f40dc5225873b4c8da9656feabac
dir: /wingui/EncoderJob.h/

View raw version
// EncoderJob.h: interface for the CEncoderJob class.
// Author: Torsten Landmann
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_ENCODERJOB_H__DFE38E70_0E81_11D5_8402_0080C88C25BD__INCLUDED_)
#define AFX_ENCODERJOB_H__DFE38E70_0E81_11D5_8402_0080C88C25BD__INCLUDED_

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

#include "SourceTargetFilePair.h"
#include "Id3TagInfo.h"
#include "ConcreteJobBase.h"
#include "EncoderGeneralPropertyPageContents.h"
#include "EncoderQualityPropertyPageContents.h"
#include "EncoderId3PropertyPageContents.h"

// do not derive this class from CJob;
// rather let CJob objects contain instances of this class
class CEncoderJob : public CConcreteJobBase
{
public:
	CEncoderJob();
	CEncoderJob(const CEncoderJob &oSource);		// copy constructor
	virtual ~CEncoderJob();

	enum EAacProfile
	{
		eAacProfileLc=0,			// the values of the enumerated constants
		eAacProfileMain=1,			// must reflect the order of the radio
		eAacProfileSsr=2,			// controls on the property page, starting with 0
	};

	// property getters
	const CSourceTargetFilePair& GetFiles() const						{ return m_oFiles; }
	CSourceTargetFilePair& GetFiles()									{ return m_oFiles; }
	CSourceTargetFilePair* GetFilesPointer()							{ return &m_oFiles; }
	bool GetSourceFileFilterIsRecursive() const							{ return m_bSourceFileFilterIsRecursive; }
	const CId3TagInfo& GetTargetFileId3Info() const						{ return m_oTargetFileId3Info; }
	CId3TagInfo& GetTargetFileId3Info()									{ return m_oTargetFileId3Info; }
	CId3TagInfo* GetTargetFileId3InfoPointer()							{ return &m_oTargetFileId3Info; }
	bool GetAllowMidside() const										{ return m_bAllowMidSide; }
	bool GetUseTns() const												{ return m_bUseTns; }
	bool GetUseLtp() const												{ return m_bUseLtp; }
	bool GetUseLfe() const												{ return m_bUseLfe; }
	EAacProfile GetAacProfile() const									{ return m_eAacProfile; }
	long GetAacProfileL() const											{ return m_eAacProfile; }
	unsigned long GetBitRate() const									{ return m_ulBitRate; }
	long GetBitRateL() const											{ return (long)m_ulBitRate; }
	unsigned long GetBandwidth() const									{ return m_ulBandwidth; }
	long GetBandwidthL() const											{ return (long)m_ulBandwidth; }
					
	// property setters
	void SetFiles(const CSourceTargetFilePair &oFiles)					{ m_oFiles=oFiles; }
	void SetSourceFileFilterIsRecursive(bool bIsRecursive)				{ m_bSourceFileFilterIsRecursive=bIsRecursive; }
	void SetTargetFileId3Info(const CId3TagInfo &oTargetFileId3Info)	{ m_oTargetFileId3Info=oTargetFileId3Info; }
	void SetAllowMidside(bool bAllowMidSide)							{ m_bAllowMidSide=bAllowMidSide; }
	void SetUseTns(bool bUseTns)										{ m_bUseTns=bUseTns; }
	void SetUseLtp(bool bUseLtp)										{ m_bUseLtp=bUseLtp; }
	void SetUseLfe(bool bUseLfe) 										{ m_bUseLfe=bUseLfe; }
	void SetAacProfile(EAacProfile eAacProfile)							{ m_eAacProfile=eAacProfile; }
	void SetAacProfile(long lAacProfile)								{ m_eAacProfile=(EAacProfile)lAacProfile; }
	void SetBitRate(unsigned long ulBitRate)							{ m_ulBitRate=ulBitRate; }
	void SetBitRate(long lBitRate)										{ ASSERT(lBitRate>=0); m_ulBitRate=(unsigned long)lBitRate; }
	void SetBandwidth(unsigned long ulBandwidth)						{ m_ulBandwidth=ulBandwidth; }
	void SetBandwidth(long lBandwidth)									{ ASSERT(lBandwidth>=0); m_ulBandwidth=lBandwidth; }

	CEncoderJob& operator=(const CEncoderJob &oRight);

	// property page interaction
	CEncoderGeneralPropertyPageContents GetGeneralPageContents() const;
	void ApplyGeneralPageContents(const CEncoderGeneralPropertyPageContents &oPageContents);
	CEncoderQualityPropertyPageContents GetQualityPageContents() const;
	void ApplyQualityPageContents(const CEncoderQualityPropertyPageContents &oPageContents);
	CEncoderId3PropertyPageContents GetId3PageContents() const;
	void ApplyId3PageContents(const CEncoderId3PropertyPageContents &oPageContents);

	// implementations to CJobListCtrlDescribable
	virtual CString DescribeJobTypeShort() const;
	virtual CString DescribeJobTypeLong() const;
	virtual CString DescribeJob() const;

	// implementations to CAbstractJob
	virtual CSupportedPropertyPagesData GetSupportedPropertyPages() const;
	virtual bool ProcessJob() const;
	virtual CString GetDetailedDescriptionForStatusDialog() const;

	// implementations to CFileSerializable
	virtual bool PutToArchive(CArchive &oArchive) const;
	virtual bool GetFromArchive(CArchive &oArchive);

	static CString TranslateAacProfileToShortString(EAacProfile eAacProfile);

private:
	CSourceTargetFilePair m_oFiles;
	bool m_bSourceFileFilterIsRecursive;
	CId3TagInfo m_oTargetFileId3Info;

	/* AAC profile */
	EAacProfile m_eAacProfile;
	/* Allow mid/side coding */
	bool m_bAllowMidSide;
	/* Use Temporal Noise Shaping */
	bool m_bUseTns;
	/* Use Long Term Prediction */
	bool m_bUseLtp;
	/* Use one of the channels as LFE channel */
	bool m_bUseLfe;

	/* bitrate / channel of AAC file */
	unsigned long m_ulBitRate;

	/* AAC file frequency bandwidth */
	unsigned long m_ulBandwidth;
};

#endif // !defined(AFX_ENCODERJOB_H__DFE38E70_0E81_11D5_8402_0080C88C25BD__INCLUDED_)