+////////////////////////////////////////////////////////////////////////////////
+// Name: sndfrmt.h
+// Purpose: wxMMedia
+// Author: Guilhem Lavaux
+// Created: 1998
+// Updated: December 1998
+// Copyright: (C) 1997, 1998, Guilhem Lavaux
+// License: wxWindows license
+////////////////////////////////////////////////////////////////////////////////
#ifndef __SNDFRMT_H__
#define __SNDFRMT_H__
void SetChannels(int channels);
void SetStereo(bool on);
void SetCodecNo(int no);
+ int GetCodecNo() { return m_codno; }
void SetCodecCreate(bool create) { m_codcreate = create; }
int GetSampleRate() const { return m_srate; }
size_t Available();
void InitIO(const wxSoundDataFormat& format);
+ virtual void InitWith(const wxSoundDataFormat& format) {}
inline void SetInStream(wxStreamBuffer *s)
{ m_in_sound = s; }