diff options
author | Matthew Hoops | 2015-08-11 23:42:30 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-08-30 21:01:43 -0400 |
commit | c8a7e39e0522b32e29ab403188f56bee9cf1da27 (patch) | |
tree | 3ebcb00ffec89499b4321e7f8eaacfc9d2285e43 /audio/decoders | |
parent | 561d1a1d62b8abd3f5ff51d66e0c32ea436e68de (diff) | |
download | scummvm-rg350-c8a7e39e0522b32e29ab403188f56bee9cf1da27.tar.gz scummvm-rg350-c8a7e39e0522b32e29ab403188f56bee9cf1da27.tar.bz2 scummvm-rg350-c8a7e39e0522b32e29ab403188f56bee9cf1da27.zip |
AUDIO: Mark the old Codec class as deprecated
Once QuickTime audio edits are rewritten to use PacketizedAudioStream, we can remove this class.
Diffstat (limited to 'audio/decoders')
-rw-r--r-- | audio/decoders/codec.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/audio/decoders/codec.h b/audio/decoders/codec.h index 93b6878dee..75910c0963 100644 --- a/audio/decoders/codec.h +++ b/audio/decoders/codec.h @@ -31,6 +31,13 @@ namespace Audio { class AudioStream; +/** + * @deprecated The old method of handling audio codecs that rely + * on the state remaining the same between calls. This should + * only be used for old code. + * + * DEPRECATED; USE PacketizedAudioStream INSTEAD! + */ class Codec { public: Codec() {} |