RTP Audio System  2.0.0
multiaudiowriter.h
Go to the documentation of this file.
00001 // ##########################################################################
00002 // ####                                                                  ####
00003 // ####                      RTP Audio Server Project                    ####
00004 // ####                    ============================                  ####
00005 // ####                                                                  ####
00006 // #### Multi Audio Writer                                               ####
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: multiaudiowriter.h 1286 2011-12-18 13:43:16Z dreibh $
00032 
00033 
00034 #ifndef MULTIAUDIOWRITER_H
00035 #define MULTIAUDIOWRITER_H
00036 
00037 
00038 #include "tdsystem.h"
00039 #include "audiowriterinterface.h"
00040 #include "synchronizable.h"
00041 
00042 #include <set>
00043 
00044 
00053 class MultiAudioWriter : virtual public AudioWriterInterface,
00054                          public Synchronizable
00055 {
00056    // ====== Constructor/Destructor =========================================
00057    public:
00061    MultiAudioWriter();
00062 
00066    ~MultiAudioWriter();
00067 
00068 
00069    // ====== MultiAudioWriter functions =====================================
00076    bool addWriter(AudioWriterInterface* writer);
00077 
00081    void removeWriter(AudioWriterInterface* writer);
00082 
00083 
00084    // ====== AudioQualityInterface implementation ===========================
00090    card16 getSamplingRate() const;
00091 
00097    card8 getBits() const;
00098 
00104    card8 getChannels() const;
00105 
00106 
00112    card16 getByteOrder() const;
00113 
00114 
00120    card16 setSamplingRate(const card16 samplingRate);
00121 
00127    card8 setBits(const card8 bits);
00128 
00134    card8 setChannels(const card8 channels);
00135 
00136 
00142    card16 setByteOrder(const card16 byteOrder);
00143 
00144 
00150    cardinal getBytesPerSecond() const;
00151 
00157    cardinal getBitsPerSample() const;
00158 
00159 
00160    // ====== AudioInterface implementation ==================================
00166    bool ready() const;
00167 
00173    void sync();
00174 
00180    bool write(const void* data, const size_t length);
00181 
00182 
00183    // ====== Internal data ==================================================
00184    private:
00185    std::multiset<AudioWriterInterface*> WriterSet;
00186 
00187    card16 AudioSamplingRate;
00188    card8  AudioBits;
00189    card8  AudioChannels;
00190    card16 AudioByteOrder;
00191 };
00192 
00193 
00194 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines