RTP Audio System  2.0.0
multiaudioreader.h
Go to the documentation of this file.
00001 // ##########################################################################
00002 // ####                                                                  ####
00003 // ####                      RTP Audio Server Project                    ####
00004 // ####                    ============================                  ####
00005 // ####                                                                  ####
00006 // #### Multi Audio Reader                                               ####
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: multiaudioreader.h 1296 2011-12-19 15:42:30Z dreibh $
00032 
00033 
00034 #ifndef WAVREADER_H
00035 #define WAVREADER_H
00036 
00037 
00038 #include "tdsystem.h"
00039 #include "audioreaderinterface.h"
00040 #include "audioquality.h"
00041 #include "string.h"
00042 
00043 #include <map>
00044 
00045 
00053 class MultiAudioReader : virtual public AudioReaderInterface,
00054                          public AudioQuality
00055 {
00056    // ====== Constructor/Destructor =========================================
00057    public:
00064    MultiAudioReader(const char* name = NULL, const cardinal level = 0);
00065 
00069    ~MultiAudioReader();
00070 
00071    // ====== Initialize =====================================================
00077    bool openMedia(const char* name);
00078 
00084    void closeMedia();
00085 
00091    bool ready() const;
00092 
00093 
00094    // ====== Input functions ================================================
00100    void getMediaInfo(MediaInfo& mediaInfo) const;
00101 
00107    MediaError getErrorCode() const;
00108 
00114    card64 getPosition() const;
00115 
00121    card64 getMaxPosition() const;
00122 
00128    void setPosition(card64 position);
00129 
00135    cardinal getNextBlock(void* buffer, const cardinal blockSize);
00136 
00137 
00138    // ====== Static functions ===============================================
00146    AudioReaderInterface* getAudioReader(const char* name, const cardinal level);
00147 
00148 
00149    // ====== Private data ===================================================
00150    private:
00151    struct ReaderEntry {
00152       AudioReaderInterface* Reader;
00153       bool                  OverwriteSettings;
00154       String                Title;
00155       String                Artist;
00156       String                Comment;
00157    };
00158 
00159 
00160    AudioReaderInterface*                              Reader;
00161    std::multimap<const card64, ReaderEntry>           ReaderSet;
00162    std::multimap<const card64, ReaderEntry>::iterator ReaderIterator;
00163 
00164    MediaError Error;
00165    card64     Position;
00166    card64     MaxPosition;
00167    cardinal   Level;
00168 };
00169 
00170 
00171 #endif
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines