You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
soundkonverter/src/replaygain.h

60 lines
1.4 KiB

#ifndef REPLAYGAIN_H
#define REPLAYGAIN_H
#include <tqobject.h>
#include <tqstringlist.h>
class Config;
class Logger;
class TDEProcess;
/**
* @short Starts a process to add/remove Replay Gain tags to/from a given file
* @author Daniel Faust <hessijames@gmail.com>
* @version 0.3
*/
class ReplayGain : public TQObject
{
TQ_OBJECT
public:
enum Mode {
calc_track = 0x0001,
calc_album = 0x0002,
remove = 0x0004,
force = 0x0008
};
/**
* Constructor
*/
ReplayGain( Config*, Logger* );
/**
* Destructor
*/
virtual ~ReplayGain();
/**
* Add/remove Replay Gain
* @param files a list of files (of the same format)
* @param format the format of the file/files (extension or mime type)
* @param prc a pointer to a TDEProcess
* @param remove if true the Replay Gain tags are being removed, if false (default) the tags are calculated and added
*/
bool apply( TQStringList files, const TQString& format, TDEProcess* proc, int logID, Mode mode = Mode(calc_track|calc_album) ); // NOTE const TQStringList& ?
/*
* Returns the track and the album gain (in this order) of the @p file
*/
//static TQValueList<float> getReplayGain( TQString file ); // obsolete
private:
Config* config;
Logger* logger;
};
#endif // REPLAYGAIN_H