/*************************************************************************** * Copyright (C) 2007 by Sindre AamÄs * * sinamas@users.sourceforge.net * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License version 2 as * * published by the Free Software Foundation. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License version 2 for more details. * * * * You should have received a copy of the GNU General Public License * * version 2 along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef AUDIOSINK_H #define AUDIOSINK_H #include "ringbuffer.h" #include "rateest.h" #include "scoped_ptr.h" #include #include class AudioSink { public: struct Status { long fromUnderrun; long fromOverflow; long rate; Status(long fromUnderrun, long fromOverflow, long rate) : fromUnderrun(fromUnderrun), fromOverflow(fromOverflow), rate(rate) { } }; AudioSink(long sampleRate, int latency, int periods); ~AudioSink(); Status write(Sint16 const *inBuf, std::size_t samples); private: struct SdlDeleter; RingBuffer rbuf_; RateEst rateEst_; scoped_ptr const mut_; scoped_ptr const bufReadyCond_; bool const failed_; static void fillBuffer(void *data, Uint8 *stream, int len) { static_cast(data)->read(stream, len); } void read(Uint8 *stream, std::size_t len); }; #endif