]> git.saurik.com Git - wxWidgets.git/blob - utils/wxMMedia2/lib/sndaiff.h
C++ comments in C files are fun but break the compilation (for the Nth time)
[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 bool CanRead();
31
32 protected:
33 bool PrepareToPlay();
34 bool PrepareToRecord(unsigned long time);
35 bool FinishRecording();
36
37 wxUint32 GetData(void *buffer, wxUint32 len);
38 wxUint32 PutData(const void *buffer, wxUint32 len);
39 };
40
41 #endif