1 // --------------------------------------------------------------------------
5 // Author: Guilhem Lavaux <lavaux@easynet.fr> (C) 1999
7 // --------------------------------------------------------------------------
9 #pragma implementation "sndaiff.cpp"
12 #include <wx/wxprec.h>
14 #include <wx/stream.h>
15 #include <wx/datstrm.h>
16 #include <wx/filefn.h>
23 #define BUILD_SIGNATURE(a,b,c,d) (((wxUint32)a) | (((wxUint32)b) << 8) | (((wxUint32)c) << 16) | (((wxUint32)d) << 24))
25 #define FORM_SIGNATURE BUILD_SIGNATURE('F','O','R','M')
26 #define AIFF_SIGNATURE BUILD_SIGNATURE('A','I','F','F')
27 #define AIFC_SIGNATURE BUILD_SIGNATURE('A','I','F','C')
28 #define COMM_SIGNATURE BUILD_SIGNATURE('C','O','M','M')
29 #define SSND_SIGNATURE BUILD_SIGNATURE('S','S','N','D')
31 wxSoundAiff::wxSoundAiff(wxInputStream
& stream
, wxSoundStream
& io_sound
)
32 : wxSoundFileStream(stream
, io_sound
)
36 wxSoundAiff::wxSoundAiff(wxOutputStream
& stream
, wxSoundStream
& io_sound
)
37 : wxSoundFileStream(stream
, io_sound
)
41 wxSoundAiff::~wxSoundAiff()
45 bool wxSoundAiff::CanRead()
47 wxUint32 signature1
, signature2
, len
;
49 if (m_input
->Read(&signature1
, 4).LastRead() != 4)
52 if (wxUINT32_SWAP_ON_BE(signature1
) != FORM_SIGNATURE
) {
53 m_input
->Ungetch(&signature1
, 4);
57 m_input
->Read(&len
, 4);
58 if (m_input
->LastRead() != 4) {
59 m_input
->Ungetch(&len
, m_input
->LastRead());
60 m_input
->Ungetch(&signature1
, 4);
64 if (m_input
->Read(&signature2
, 4).LastRead() != 4) {
65 m_input
->Ungetch(&signature2
, m_input
->LastRead());
66 m_input
->Ungetch(&len
, 4);
67 m_input
->Ungetch(&signature1
, 4);
71 m_input
->Ungetch(&signature2
, 4);
72 m_input
->Ungetch(&len
, 4);
73 m_input
->Ungetch(&signature1
, 4);
76 wxUINT32_SWAP_ON_BE(signature2
) != AIFF_SIGNATURE
&&
77 wxUINT32_SWAP_ON_BE(signature2
) != AIFC_SIGNATURE
)
83 #define FAIL_WITH(condition, err) if (condition) { m_snderror = err; return FALSE; }
85 bool wxSoundAiff::PrepareToPlay()
87 wxDataInputStream
data(*m_input
);
88 wxUint32 signature
, len
, ssnd
;
92 m_snderror
= wxSOUND_INVSTRM
;
96 data
.BigEndianOrdered(TRUE
);
98 FAIL_WITH(m_input
->Read(&signature
, 4).LastRead() != 4, wxSOUND_INVSTRM
);
99 FAIL_WITH(wxUINT32_SWAP_ON_BE(signature
) != FORM_SIGNATURE
, wxSOUND_INVSTRM
);
103 FAIL_WITH(m_input
->LastRead() != 4, wxSOUND_INVSTRM
);
106 FAIL_WITH(m_input
->Read(&signature
, 4).LastRead() != 4, wxSOUND_INVSTRM
);
108 wxUINT32_SWAP_ON_BE(signature
) != AIFF_SIGNATURE
&&
109 wxUINT32_SWAP_ON_BE(signature
) != AIFC_SIGNATURE
, wxSOUND_INVSTRM
);
113 while (!end_headers
) {
114 FAIL_WITH(m_input
->Read(&signature
, 4).LastRead() != 4, wxSOUND_INVSTRM
);
117 FAIL_WITH(m_input
->LastRead() != 4, wxSOUND_INVSTRM
);
119 switch (wxUINT32_SWAP_ON_BE(signature
)) {
120 case COMM_SIGNATURE
: { // "COMM"
121 wxUint16 channels
, bps
;
122 wxUint32 num_samples
;
124 wxSoundFormatPcm sndformat
;
126 data
>> channels
>> num_samples
>> bps
>> srate
;
128 sndformat
.SetSampleRate((wxUint32
) srate
);
129 sndformat
.SetBPS(bps
);
130 sndformat
.SetChannels(channels
);
131 sndformat
.Signed(FALSE
);
132 sndformat
.SetOrder(wxBIG_ENDIAN
);
134 if (!SetSoundFormat(sndformat
))
136 m_input
->SeekI(len
-18, wxFromCurrent
);
139 case SSND_SIGNATURE
: { // "SSND"
141 // m_input->SeekI(4, wxFromCurrent); // Pass an INT32
142 // m_input->SeekI(len-4, wxFromCurrent); // Pass the rest
143 m_input
->SeekI(ssnd
+ 4, wxFromCurrent
);
148 m_input
->SeekI(len
, wxFromCurrent
);
155 bool wxSoundAiff::PrepareToRecord(unsigned long time
)
161 bool wxSoundAiff::FinishRecording()
167 wxUint32
wxSoundAiff::GetData(void *buffer
, wxUint32 len
)
169 return m_input
->Read(buffer
, len
).LastRead();
172 wxUint32
wxSoundAiff::PutData(const void *buffer
, wxUint32 len
)
174 return m_output
->Write(buffer
, len
).LastWrite();