LogoSearch packages:      

Sourcecode: audacity version File versions

AliasBlockFile::AliasBlockFile ( wxFileName  baseFileName,
wxFileName  aliasedFileName,
sampleCount  aliasStart,
sampleCount  aliasLen,
int  aliasChannel 
)

Constructs an AliasBlockFile.

Constructs an AliasBlockFile based on the given information about the aliased file.

Note that derived classes /must/ call AliasBlockFile::WriteSummary() in their constructors for the summary file to be correctly written to disk.

Parameters:
baseFileName The name of the summary file to be written, but without an extension. This constructor will add the appropriate extension before passing it to BlockFile::BlockFile
aliasedFileName The name of the file where the audio data for this block actually exists.
aliasStart The offset in the aliased file where this block's data begins
aliasLen The length of this block's data in the aliased file.
aliasChannel The channel where this block's data is located in the aliased file

Definition at line 508 of file BlockFile.cpp.

                                                                      :
   BlockFile(wxFileName(baseFileName.GetFullPath() + wxT(".auf")), aliasLen),
   mAliasedFileName(aliasedFileName),
   mAliasStart(aliasStart),
   mAliasChannel(aliasChannel)
{
   mSilentAliasLog=FALSE;
}


Generated by  Doxygen 1.5.1   Back to index