]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/wxMMedia/sndpcm.h
added TODO list for cross compilation
[wxWidgets.git] / utils / wxMMedia / sndpcm.h
index 4c464dda216cdec831ec38ae7444f19b858da3e0..20fa95848d01a49c3bbca3060a00b2a40ae4df09 100644 (file)
@@ -13,11 +13,6 @@ class wxSoundPcmCodec : public wxSoundCodec {
   wxSoundPcmCodec();
   virtual ~wxSoundPcmCodec();
 
-  void SetSampleRate(int srate) { m_orig_format.SetSampleRate(srate); }
-  void SetBits(int bits) { m_orig_format.SetBps(bits); }
-  void SetByteOrder(int order) { m_orig_format.SetByteOrder(order); }
-  void SetSign(int sample_sign) { m_orig_format.SetSign(sample_sign); }
-
   size_t GetByteRate() const;
   wxSoundDataFormat GetPreferredFormat(int codec = 0) const;
 
@@ -31,6 +26,7 @@ class wxSoundPcmCodec : public wxSoundCodec {
   void OutputSwapAndSign16();
 
  protected:
+  friend class wxSoundDataFormat;
   wxSoundDataFormat m_orig_format;
   char m_char_stack;
   bool m_char_bool;