RTP Audio System
2.0.0
|
00001 // ########################################################################## 00002 // #### #### 00003 // #### RTP Audio Server Project #### 00004 // #### ============================ #### 00005 // #### #### 00006 // #### Simple Audio Decoder #### 00007 // #### #### 00008 // #### Copyright (C) 1999-2012 by Thomas Dreibholz #### 00009 // #### #### 00010 // #### Contact: #### 00011 // #### EMail: dreibh@iem.uni-due.de #### 00012 // #### WWW: https://www.nntb.no/~dreibh/rtpaudio #### 00013 // #### #### 00014 // #### ---------------------------------------------------------------- #### 00015 // #### #### 00016 // #### This program is free software: you can redistribute it and/or #### 00017 // #### modify it under the terms of the GNU General Public License as #### 00018 // #### published by the Free Software Foundation, either version 3 of #### 00019 // #### the License, or (at your option) any later version. #### 00020 // #### #### 00021 // #### This program is distributed in the hope that it will be useful, #### 00022 // #### but WITHOUT ANY WARRANTY; without even the implied warranty of #### 00023 // #### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #### 00024 // #### GNU General Public License for more details. #### 00025 // #### #### 00026 // #### You should have received a copy of the GNU General Public #### 00027 // #### License along with this program. If not, see #### 00028 // #### <http://www.gnu.org/licenses/>. #### 00029 // #### #### 00030 // ########################################################################## 00031 // $Id: simpleaudiodecoder.h 1286 2011-12-18 13:43:16Z dreibh $ 00032 00033 00034 #ifndef SIMPLEAUDIODECODER_H 00035 #define SIMPLEAUDIODECODER_H 00036 00037 00038 #include "tdsystem.h" 00039 #include "synchronizable.h" 00040 #include "audiowriterinterface.h" 00041 #include "audiodecoderinterface.h" 00042 #include "seqnumvalidator.h" 00043 #include "audioquality.h" 00044 00045 00054 class SimpleAudioDecoder : public AudioDecoderInterface, 00055 public Synchronizable 00056 { 00057 // ====== Constructor/Destructor ========================================= 00058 public: 00064 SimpleAudioDecoder(AudioWriterInterface* audioWriter); 00065 00069 ~SimpleAudioDecoder(); 00070 00071 00072 // ====== DecoderInterface implementation ================================ 00078 const card16 getTypeID() const; 00079 00085 const char* getTypeName() const; 00086 00092 void activate(); 00093 00099 void deactivate(); 00100 00106 void reset(); 00107 00113 void getMediaInfo(MediaInfo& mediaInfo) const; 00114 00120 card8 getErrorCode() const; 00121 00127 card64 getPosition() const; 00128 00134 card64 getMaxPosition() const; 00135 00141 bool checkNextPacket(DecoderPacket* decoderPacket); 00142 00148 void handleNextPacket(const DecoderPacket* decoderPacket); 00149 00150 00151 // ====== AudioDecoderInterface implementation =========================== 00157 card16 getSamplingRate() const; 00158 00164 card8 getBits() const; 00165 00171 card8 getChannels() const; 00172 00173 00179 card16 getByteOrder() const; 00180 00181 00187 cardinal getBytesPerSecond() const; 00188 00194 cardinal getBitsPerSample() const; 00195 00196 00202 AudioQuality getWantedQuality() const; 00203 00209 void setWantedQuality(const AudioQualityInterface& wantedQuality); 00210 00211 00212 // ====== Private data =================================================== 00213 private: 00214 SeqNumValidator SeqNumber; 00215 AudioWriterInterface* Device; 00216 card64 Position; 00217 card64 MaxPosition; 00218 AudioQuality WantedQuality; 00219 00220 MediaInfo Media; 00221 card16 AudioSamplingRate; 00222 card8 AudioBits; 00223 card8 AudioChannels; 00224 card8 ErrorCode; 00225 }; 00226 00227 00228 #endif