]> git.saurik.com Git - wxWidgets.git/blob - utils/wxMMedia2/lib/sndaiff.h
CanRead() now restores the stream to its previous state (potential
[wxWidgets.git] / utils / wxMMedia2 / lib / sndaiff.h
1 // --------------------------------------------------------------------------
2 // Name: sndaiff.h
3 // Purpose:
4 // Date: 08/11/1999
5 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
6 // CVSID: $Id$
7 // --------------------------------------------------------------------------
8 #ifndef _WX_SNDAIFF_H
9 #define _WX_SNDAIFF_H
10
11 #ifdef __GNUG__
12 #pragma interface "sndaiff.h"
13 #endif
14
15 #include <wx/stream.h>
16 #include "sndbase.h"
17 #include "sndcodec.h"
18 #include "sndfile.h"
19
20 //
21 // AIFF codec
22 //
23
24 class wxSoundAiff: public wxSoundFileStream {
25 public:
26 wxSoundAiff(wxInputStream& stream, wxSoundStream& io_sound);
27 wxSoundAiff(wxOutputStream& stream, wxSoundStream& io_sound);
28 ~wxSoundAiff();
29
30 protected:
31 bool PrepareToPlay();
32 bool PrepareToRecord(unsigned long time);
33 bool FinishRecording();
34
35 size_t GetData(void *buffer, size_t len);
36 size_t PutData(const void *buffer, size_t len);
37 };
38
39 #endif