• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/include/wx/mmedia/
1// --------------------------------------------------------------------------
2// Name: sndcpcm.h
3// Purpose:
4// Date: 08/11/1999
5// Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
6// CVSID: $Id: sndcpcm.h 35650 2005-09-23 12:56:45Z MR $
7// License:    wxWindows license
8// --------------------------------------------------------------------------
9#ifndef _WX_SNDCPCM_H
10#define _WX_SNDCPCM_H
11
12#include "wx/defs.h"
13#include "wx/mmedia/defs.h"
14#include "wx/mmedia/sndbase.h"
15#include "wx/mmedia/sndcodec.h"
16
17//
18// PCM converter class
19//
20
21class WXDLLIMPEXP_MMEDIA wxSoundStreamPcm: public wxSoundStreamCodec {
22public:
23    typedef void (*ConverterType)(const void *buf_in, void *buf_out,
24                                  wxUint32 len);
25
26    wxSoundStreamPcm(wxSoundStream& sndio);
27    ~wxSoundStreamPcm();
28
29    wxSoundStream& Read(void *buffer, wxUint32 len);
30    wxSoundStream& Write(const void *buffer, wxUint32 len);
31
32    bool SetSoundFormat(const wxSoundFormatBase& format);
33
34    wxUint32 GetBestSize() const;
35
36protected:
37    wxUint32 GetReadSize(wxUint32 len) const;
38    wxUint32 GetWriteSize(wxUint32 len) const;
39
40protected:
41    ConverterType m_function_out, m_function_in;
42
43    // Static temporary buffer
44    char *m_prebuffer;
45    wxUint32 m_prebuffer_size;
46    // Estimated best size to fit into the static buffer
47    wxUint32 m_best_size;
48    // Multiplier for IO buffer size
49    float m_multiplier_in, m_multiplier_out;
50};
51
52#endif
53