diff options
author | Matthew Hoops | 2015-08-09 20:05:40 -0400 |
---|---|---|
committer | Matthew Hoops | 2015-08-30 19:53:53 -0400 |
commit | de2f4e698270937251f0655c19555fb9099df55f (patch) | |
tree | faf8ae6a34e711f28050b8c6d6f13957f95d1114 /video/avi_decoder.h | |
parent | ba4469da6a111e208d40808cba50e797180a8edd (diff) | |
download | scummvm-rg350-de2f4e698270937251f0655c19555fb9099df55f.tar.gz scummvm-rg350-de2f4e698270937251f0655c19555fb9099df55f.tar.bz2 scummvm-rg350-de2f4e698270937251f0655c19555fb9099df55f.zip |
VIDEO: Add support for MP3 in AVI
Diffstat (limited to 'video/avi_decoder.h')
-rw-r--r-- | video/avi_decoder.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/video/avi_decoder.h b/video/avi_decoder.h index 6c1ce1a4b9..8b12c23adf 100644 --- a/video/avi_decoder.h +++ b/video/avi_decoder.h @@ -32,6 +32,7 @@ #include "audio/mixer.h" namespace Audio { +class PacketizedAudioStream; class QueuingAudioStream; } @@ -241,8 +242,9 @@ protected: AVIStreamHeader _audsHeader; PCMWaveFormat _wvInfo; Audio::Mixer::SoundType _soundType; - Audio::QueuingAudioStream *_audStream; - Audio::QueuingAudioStream *createAudioStream(); + Audio::QueuingAudioStream *_queueStream; + Audio::PacketizedAudioStream *_packetStream; + void createAudioStream(); uint32 _curChunk; }; |