EMIPLIB

mipaudiofileinput.h

Go to the documentation of this file.
00001 /*
00002     
00003   This file is a part of EMIPLIB, the EDM Media over IP Library.
00004   
00005   Copyright (C) 2006-2011  Hasselt University - Expertise Centre for
00006                       Digital Media (EDM) (http://www.edm.uhasselt.be)
00007 
00008   This library is free software; you can redistribute it and/or
00009   modify it under the terms of the GNU Lesser General Public
00010   License as published by the Free Software Foundation; either
00011   version 2.1 of the License, or (at your option) any later version.
00012 
00013   This library is distributed in the hope that it will be useful,
00014   but WITHOUT ANY WARRANTY; without even the implied warranty of
00015   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00016   Lesser General Public License for more details.
00017 
00018   You should have received a copy of the GNU Lesser General Public
00019   License along with this library; if not, write to the Free Software
00020   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  
00021   USA
00022 
00023 */
00024 
00028 #ifndef MIPAUDIOFILEINPUT_H
00029 
00030 #define MIPAUDIOFILEINPUT_H
00031 
00032 #include "mipconfig.h"
00033 
00034 #ifdef MIPCONFIG_SUPPORT_AUDIOFILE
00035 
00036 #include "mipcomponent.h"
00037 #include "miprawaudiomessage.h"
00038 #include "miptime.h"
00039 #include <audiofile.h>
00040 #include <string>
00041 
00052 class EMIPLIB_IMPORTEXPORT MIPAudioFileInput : public MIPComponent
00053 {
00054 public:
00055         MIPAudioFileInput();
00056         ~MIPAudioFileInput();
00057 
00064         bool open(const std::string &fname, int frames, bool loop = true);
00065         
00073         bool open(const std::string &fname, MIPTime interval, bool loop = true);
00074 
00078         bool close();
00079 
00081         int getSamplingRate() const                                                             { if (m_audiofileHandle) return m_sampRate; return 0; }
00082         
00084         int getNumberOfFrames() const                                                           { if (m_audiofileHandle) return m_numFrames; return 0; }
00085 
00087         int getNumberOfChannels() const                                                         { if (m_audiofileHandle) return m_numChannels; return 0; }
00088 
00090         MIPRaw16bitAudioMessage::SampleEncoding getSampleEncoding() const                       { if (m_audiofileHandle) return m_sampleEncoding; return MIPRaw16bitAudioMessage::Native; }
00091 
00093         void setSourceID(uint64_t sourceID)                                                     { m_sourceID = sourceID; }
00094 
00095         bool push(const MIPComponentChain &chain, int64_t iteration, MIPMessage *pMsg);
00096         bool pull(const MIPComponentChain &chain, int64_t iteration, MIPMessage **pMsg);
00097 protected:
00103         virtual void onLastInputFrame()                                                         { }
00104 private:
00105         AFfilehandle m_audiofileHandle;
00106         int m_sampRate;
00107         int m_numFrames;
00108         int m_numChannels;
00109         uint16_t *m_pFrames;
00110         MIPRaw16bitAudioMessage *m_pMsg;
00111         MIPRaw16bitAudioMessage::SampleEncoding m_sampleEncoding;
00112         bool m_gotMessage;
00113         bool m_loop, m_eof;
00114         uint64_t m_sourceID;
00115 };
00116 
00117 #endif // MIPCONFIG_SUPPORT_AUDIOFILE
00118 
00119 #endif // MIPAUDIOFILEINPUT_H
00120