diff options
author | Daniil Cherednik <dan.cherednik@gmail.com> | 2016-06-19 02:58:23 +0300 |
---|---|---|
committer | Daniil Cherednik <dan.cherednik@gmail.com> | 2016-06-19 03:31:55 +0300 |
commit | 1151d5831f19a9f24dd0c545a4968606712a62d2 (patch) | |
tree | c978c1b9a3fc86fef531dd412fe6b7668b7c0567 /src/compressed_io.h | |
parent | 8d65a0bd0774e03b3d10354e15f2f3361a2ce26a (diff) | |
download | atracdenc-atrac3.tar.gz |
some improvements of ATRAC3 implementation:atrac3
- simple (ATRAC1 like) psychoacoustic added
- possibility to encode tonal components
- simple tonal component extractor
- refactoring
Diffstat (limited to 'src/compressed_io.h')
-rw-r--r-- | src/compressed_io.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/compressed_io.h b/src/compressed_io.h index d8cfb11..8b6a235 100644 --- a/src/compressed_io.h +++ b/src/compressed_io.h @@ -29,3 +29,5 @@ public: virtual long long GetLengthInSamples() const = 0; virtual ~ICompressedIO() {} }; + +typedef std::unique_ptr<ICompressedIO> TCompressedIOPtr; |