⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sndcodec.cpp

📁 Wxpython Implemented on Windows CE, Source code
💻 CPP
字号:
// --------------------------------------------------------------------------
// Name: sndcodec.cpp
// Purpose:
// Date: 08/11/1999
// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
// CVSID: $Id: sndcodec.cpp,v 1.3 2005/09/23 12:47:51 MR Exp $
// wxWindows licence
// --------------------------------------------------------------------------

#include "wx/wxprec.h"

#ifndef WX_PRECOMP
#include "wx/defs.h"
#endif

#ifdef __BORLANDC__
  #pragma hdrstop
#endif

#include "wx/mmedia/sndbase.h"
#include "wx/mmedia/sndcodec.h"

wxSoundStreamCodec::wxSoundStreamCodec(wxSoundStream& snd_io)
 : m_sndio(&snd_io)
{
}

wxSoundStreamCodec::~wxSoundStreamCodec()
{
}

bool wxSoundStreamCodec::StartProduction(int evt)
{
  return m_sndio->StartProduction(evt);
}

bool wxSoundStreamCodec::StopProduction()
{
  return m_sndio->StopProduction();
}

wxUint32 wxSoundStreamCodec::GetBestSize() const
{
  return m_sndio->GetBestSize();
}

⌨️ 快捷键说明

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