sndcpcm.h

来自「很牛的GUI源码wxWidgets-2.8.0.zip 可在多种平台下运行.」· C头文件 代码 · 共 53 行

H
53
字号
// --------------------------------------------------------------------------// Name: sndcpcm.h// Purpose:// Date: 08/11/1999// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999// CVSID: $Id: sndcpcm.h,v 1.5 2005/09/23 12:47:04 MR Exp $// License:    wxWindows license// --------------------------------------------------------------------------#ifndef _WX_SNDCPCM_H#define _WX_SNDCPCM_H#include "wx/defs.h"#include "wx/mmedia/defs.h"#include "wx/mmedia/sndbase.h"#include "wx/mmedia/sndcodec.h"//// PCM converter class//class WXDLLIMPEXP_MMEDIA wxSoundStreamPcm: public wxSoundStreamCodec {public:    typedef void (*ConverterType)(const void *buf_in, void *buf_out,                                  wxUint32 len);        wxSoundStreamPcm(wxSoundStream& sndio);    ~wxSoundStreamPcm();        wxSoundStream& Read(void *buffer, wxUint32 len);    wxSoundStream& Write(const void *buffer, wxUint32 len);        bool SetSoundFormat(const wxSoundFormatBase& format);        wxUint32 GetBestSize() const;    protected:    wxUint32 GetReadSize(wxUint32 len) const;    wxUint32 GetWriteSize(wxUint32 len) const;protected:    ConverterType m_function_out, m_function_in;    // Static temporary buffer    char *m_prebuffer;    wxUint32 m_prebuffer_size;    // Estimated best size to fit into the static buffer    wxUint32 m_best_size;    // Multiplier for IO buffer size    float m_multiplier_in, m_multiplier_out;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?