aboutsummaryrefslogtreecommitdiffstats
path: root/src/compressed_io.h
diff options
context:
space:
mode:
authorDaniil Cherednik <dan.cherednik@gmail.com>2016-06-19 02:58:23 +0300
committerDaniil Cherednik <dan.cherednik@gmail.com>2016-06-19 03:31:55 +0300
commit1151d5831f19a9f24dd0c545a4968606712a62d2 (patch)
treec978c1b9a3fc86fef531dd412fe6b7668b7c0567 /src/compressed_io.h
parent8d65a0bd0774e03b3d10354e15f2f3361a2ce26a (diff)
downloadatracdenc-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.h2
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;