From 72101c66fac7f3d313e8a5702ba61fd5f47acc0b Mon Sep 17 00:00:00 2001 From: Matthew Hoops Date: Sat, 20 Apr 2013 15:18:09 -0400 Subject: AUDIO: Cleanup naming --- audio/decoders/adpcm.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'audio/decoders/adpcm.h') diff --git a/audio/decoders/adpcm.h b/audio/decoders/adpcm.h index 288026203b..d3c46574bf 100644 --- a/audio/decoders/adpcm.h +++ b/audio/decoders/adpcm.h @@ -51,7 +51,7 @@ class RewindableAudioStream; // http://wiki.multimedia.cx/index.php?title=Category:ADPCM_Audio_Codecs // Usually, if the audio stream we're trying to play has the FourCC header // string intact, it's easy to discern which encoding is used -enum typesADPCM { +enum ADPCMType { kADPCMOki, // Dialogic/Oki ADPCM (aka VOX) kADPCMMSIma, // Microsoft IMA ADPCM kADPCMMS, // Microsoft ADPCM @@ -76,7 +76,7 @@ enum typesADPCM { RewindableAudioStream *makeADPCMStream( Common::SeekableReadStream *stream, DisposeAfterUse::Flag disposeAfterUse, - uint32 size, typesADPCM type, + uint32 size, ADPCMType type, int rate, int channels, uint32 blockAlign = 0); -- cgit v1.2.3