]> git.saurik.com Git - wxWidgets.git/blame - utils/wxMMedia2/lib/sndaiff.h
* Added IsPaused() to wxSoundFileStream
[wxWidgets.git] / utils / wxMMedia2 / lib / sndaiff.h
CommitLineData
526ddb13
GL
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
24class wxSoundAiff: public wxSoundFileStream {
25 public:
26 wxSoundAiff(wxInputStream& stream, wxSoundStream& io_sound);
27 wxSoundAiff(wxOutputStream& stream, wxSoundStream& io_sound);
28 ~wxSoundAiff();
29
56dc1ffd
GL
30 bool CanRead();
31
526ddb13
GL
32 protected:
33 bool PrepareToPlay();
34 bool PrepareToRecord(unsigned long time);
35 bool FinishRecording();
36
0662cd32
GL
37 wxUint32 GetData(void *buffer, wxUint32 len);
38 wxUint32 PutData(const void *buffer, wxUint32 len);
526ddb13
GL
39};
40
41#endif