tahoma2d/toonz/sources/sound/aiff/tsio_aiff.h

58 lines
1.3 KiB
C
Raw Normal View History

2016-05-17 03:04:11 +12:00
#pragma once
2016-03-19 06:57:51 +13:00
#ifndef TSIO_AIFF_INCLUDED
#define TSIO_AIFF_INCLUDED
#include "tsound_io.h"
//==========================================================
/*!
The class TSoundTrackReaderAiff reads audio files having
2016-06-15 18:43:10 +12:00
.aiff extension
2016-03-19 06:57:51 +13:00
*/
2016-06-15 18:43:10 +12:00
class TSoundTrackReaderAiff : public TSoundTrackReader {
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TSoundTrackReaderAiff(const TFilePath &fp);
~TSoundTrackReaderAiff() {}
/*!
Loads the .aiff audio file whose path has been specified in the constructor.
It returns a TSoundTrackP created from the audio file
*/
2016-06-19 20:06:29 +12:00
TSoundTrackP load() override;
2016-06-15 18:43:10 +12:00
/*!
Returns a soundtrack reader able to read .aiff audio files
*/
static TSoundTrackReader *create(const TFilePath &fp) {
return new TSoundTrackReaderAiff(fp);
}
2016-03-19 06:57:51 +13:00
};
//==========================================================
/*!
The class TSoundTrackWriterAiff writes audio file having
.aiff extension
*/
2016-06-15 18:43:10 +12:00
class TSoundTrackWriterAiff : public TSoundTrackWriter {
2016-03-19 06:57:51 +13:00
public:
2016-06-15 18:43:10 +12:00
TSoundTrackWriterAiff(const TFilePath &fp);
~TSoundTrackWriterAiff() {}
/*!
Saves the informations of the soundtrack in .aiff audio file
whose path has been specified in the constructor.
*/
2016-06-19 20:06:29 +12:00
bool save(const TSoundTrackP &) override;
2016-06-15 18:43:10 +12:00
/*!
Returns a soundtrack writer able to write .aiff audio files
*/
static TSoundTrackWriter *create(const TFilePath &fp) {
return new TSoundTrackWriterAiff(fp);
}
2016-03-19 06:57:51 +13:00
};
#endif