RTP Audio System
2.0.0
|
00001 // ########################################################################## 00002 // #### #### 00003 // #### RTP Audio Server Project #### 00004 // #### ============================ #### 00005 // #### #### 00006 // #### Audio Reader Interface #### 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: audioreaderinterface.h 1293 2011-12-19 14:59:28Z dreibh $ 00032 00033 00034 #ifndef AUDIOREADERINTERFACE_H 00035 #define AUDIOREADERINTERFACE_H 00036 00037 00038 #include "tdsystem.h" 00039 #include "audioqualityinterface.h" 00040 #include "mediainfo.h" 00041 00042 00050 class AudioReaderInterface : virtual public AudioQualityInterface 00051 { 00052 public: 00059 virtual bool openMedia(const char* name) = 0; 00060 00064 virtual void closeMedia() = 0; 00065 00071 virtual bool ready() const = 0; 00072 00078 virtual void getMediaInfo(MediaInfo& mediaInfo) const = 0; 00079 00085 virtual MediaError getErrorCode() const = 0; 00086 00092 virtual card64 getPosition() const = 0; 00093 00099 virtual card64 getMaxPosition() const = 0; 00100 00106 virtual void setPosition(const card64 position) = 0; 00107 00116 virtual cardinal getNextBlock(void* buffer, const cardinal blockSize) = 0; 00117 }; 00118 00119 00120 #endif