merge down from merged-API-layer branch: cvs -q up -dP -j API_LAYER_MERGING_BASELINE...
[platform/upstream/flac.git] / src / libFLAC++ / stream_decoder.cpp
1 /* libFLAC++ - Free Lossless Audio Codec library
2  * Copyright (C) 2002,2003,2004,2005,2006  Josh Coalson
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * - Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * - Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the distribution.
14  *
15  * - Neither the name of the Xiph.org Foundation nor the names of its
16  * contributors may be used to endorse or promote products derived from
17  * this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
23  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31
32 #include "FLAC++/decoder.h"
33 #include "FLAC/assert.h"
34
35 #ifdef _MSC_VER
36 // warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
37 #pragma warning ( disable : 4800 )
38 #endif
39
40 namespace FLAC {
41         namespace Decoder {
42
43                 Stream::Stream():
44                 decoder_(::FLAC__stream_decoder_new())
45                 { }
46
47                 Stream::~Stream()
48                 {
49                         if(0 != decoder_) {
50                                 ::FLAC__stream_decoder_finish(decoder_);
51                                 ::FLAC__stream_decoder_delete(decoder_);
52                         }
53                 }
54
55                 bool Stream::is_valid() const
56                 {
57                         return 0 != decoder_;
58                 }
59
60                 bool Stream::set_md5_checking(bool value)
61                 {
62                         FLAC__ASSERT(is_valid());
63                         return (bool)::FLAC__stream_decoder_set_md5_checking(decoder_, value);
64                 }
65
66                 bool Stream::set_metadata_respond(::FLAC__MetadataType type)
67                 {
68                         FLAC__ASSERT(is_valid());
69                         return (bool)::FLAC__stream_decoder_set_metadata_respond(decoder_, type);
70                 }
71
72                 bool Stream::set_metadata_respond_application(const FLAC__byte id[4])
73                 {
74                         FLAC__ASSERT(is_valid());
75                         return (bool)::FLAC__stream_decoder_set_metadata_respond_application(decoder_, id);
76                 }
77
78                 bool Stream::set_metadata_respond_all()
79                 {
80                         FLAC__ASSERT(is_valid());
81                         return (bool)::FLAC__stream_decoder_set_metadata_respond_all(decoder_);
82                 }
83
84                 bool Stream::set_metadata_ignore(::FLAC__MetadataType type)
85                 {
86                         FLAC__ASSERT(is_valid());
87                         return (bool)::FLAC__stream_decoder_set_metadata_ignore(decoder_, type);
88                 }
89
90                 bool Stream::set_metadata_ignore_application(const FLAC__byte id[4])
91                 {
92                         FLAC__ASSERT(is_valid());
93                         return (bool)::FLAC__stream_decoder_set_metadata_ignore_application(decoder_, id);
94                 }
95
96                 bool Stream::set_metadata_ignore_all()
97                 {
98                         FLAC__ASSERT(is_valid());
99                         return (bool)::FLAC__stream_decoder_set_metadata_ignore_all(decoder_);
100                 }
101
102                 Stream::State Stream::get_state() const
103                 {
104                         FLAC__ASSERT(is_valid());
105                         return State(::FLAC__stream_decoder_get_state(decoder_));
106                 }
107
108                 bool Stream::get_md5_checking() const
109                 {
110                         FLAC__ASSERT(is_valid());
111                         return (bool)::FLAC__stream_decoder_get_md5_checking(decoder_);
112                 }
113
114                 FLAC__uint64 Stream::get_total_samples() const
115                 {
116                         FLAC__ASSERT(is_valid());
117                         return ::FLAC__stream_decoder_get_total_samples(decoder_);
118                 }
119
120                 unsigned Stream::get_channels() const
121                 {
122                         FLAC__ASSERT(is_valid());
123                         return ::FLAC__stream_decoder_get_channels(decoder_);
124                 }
125
126                 ::FLAC__ChannelAssignment Stream::get_channel_assignment() const
127                 {
128                         FLAC__ASSERT(is_valid());
129                         return ::FLAC__stream_decoder_get_channel_assignment(decoder_);
130                 }
131
132                 unsigned Stream::get_bits_per_sample() const
133                 {
134                         FLAC__ASSERT(is_valid());
135                         return ::FLAC__stream_decoder_get_bits_per_sample(decoder_);
136                 }
137
138                 unsigned Stream::get_sample_rate() const
139                 {
140                         FLAC__ASSERT(is_valid());
141                         return ::FLAC__stream_decoder_get_sample_rate(decoder_);
142                 }
143
144                 unsigned Stream::get_blocksize() const
145                 {
146                         FLAC__ASSERT(is_valid());
147                         return ::FLAC__stream_decoder_get_blocksize(decoder_);
148                 }
149
150                 ::FLAC__StreamDecoderInitStatus Stream::init()
151                 {
152                         FLAC__ASSERT(is_valid());
153                         return ::FLAC__stream_decoder_init_stream(decoder_, read_callback_, seek_callback_, tell_callback_, length_callback_, eof_callback_, write_callback_, metadata_callback_, error_callback_, /*client_data=*/(void*)this);
154                 }
155
156                 void Stream::finish()
157                 {
158                         FLAC__ASSERT(is_valid());
159                         ::FLAC__stream_decoder_finish(decoder_);
160                 }
161
162                 bool Stream::flush()
163                 {
164                         FLAC__ASSERT(is_valid());
165                         return (bool)::FLAC__stream_decoder_flush(decoder_);
166                 }
167
168                 bool Stream::reset()
169                 {
170                         FLAC__ASSERT(is_valid());
171                         return (bool)::FLAC__stream_decoder_reset(decoder_);
172                 }
173
174                 bool Stream::process_single()
175                 {
176                         FLAC__ASSERT(is_valid());
177                         return (bool)::FLAC__stream_decoder_process_single(decoder_);
178                 }
179
180                 bool Stream::process_until_end_of_metadata()
181                 {
182                         FLAC__ASSERT(is_valid());
183                         return (bool)::FLAC__stream_decoder_process_until_end_of_metadata(decoder_);
184                 }
185
186                 bool Stream::process_until_end_of_stream()
187                 {
188                         FLAC__ASSERT(is_valid());
189                         return (bool)::FLAC__stream_decoder_process_until_end_of_stream(decoder_);
190                 }
191
192                 bool Stream::skip_single_frame()
193                 {
194                         FLAC__ASSERT(is_valid());
195                         return (bool)::FLAC__stream_decoder_skip_single_frame(decoder_);
196                 }
197
198                 bool Stream::seek_absolute(FLAC__uint64 sample)
199                 {
200                         FLAC__ASSERT(is_valid());
201                         return (bool)::FLAC__stream_decoder_seek_absolute(decoder_, sample);
202                 }
203
204                 ::FLAC__StreamDecoderSeekStatus Stream::seek_callback(FLAC__uint64 absolute_byte_offset)
205                 {
206                         (void)absolute_byte_offset;
207                         return ::FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED;
208                 }
209
210                 ::FLAC__StreamDecoderTellStatus Stream::tell_callback(FLAC__uint64 *absolute_byte_offset)
211                 {
212                         (void)absolute_byte_offset;
213                         return ::FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED;
214                 }
215
216                 ::FLAC__StreamDecoderLengthStatus Stream::length_callback(FLAC__uint64 *stream_length)
217                 {
218                         (void)stream_length;
219                         return ::FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED;
220                 }
221
222                 bool Stream::eof_callback()
223                 {
224                         return false;
225                 }
226
227                 void Stream::metadata_callback(const ::FLAC__StreamMetadata *metadata)
228                 {
229                         (void)metadata;
230                 }
231
232                 ::FLAC__StreamDecoderReadStatus Stream::read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
233                 {
234                         (void)decoder;
235                         FLAC__ASSERT(0 != client_data);
236                         Stream *instance = reinterpret_cast<Stream *>(client_data);
237                         FLAC__ASSERT(0 != instance);
238                         return instance->read_callback(buffer, bytes);
239                 }
240
241                 ::FLAC__StreamDecoderSeekStatus Stream::seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data)
242                 {
243                         (void) decoder;
244                         FLAC__ASSERT(0 != client_data);
245                         Stream *instance = reinterpret_cast<Stream *>(client_data);
246                         FLAC__ASSERT(0 != instance);
247                         return instance->seek_callback(absolute_byte_offset);
248                 }
249
250                 ::FLAC__StreamDecoderTellStatus Stream::tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data)
251                 {
252                         (void) decoder;
253                         FLAC__ASSERT(0 != client_data);
254                         Stream *instance = reinterpret_cast<Stream *>(client_data);
255                         FLAC__ASSERT(0 != instance);
256                         return instance->tell_callback(absolute_byte_offset);
257                 }
258
259                 ::FLAC__StreamDecoderLengthStatus Stream::length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data)
260                 {
261                         (void) decoder;
262                         FLAC__ASSERT(0 != client_data);
263                         Stream *instance = reinterpret_cast<Stream *>(client_data);
264                         FLAC__ASSERT(0 != instance);
265                         return instance->length_callback(stream_length);
266                 }
267
268                 FLAC__bool Stream::eof_callback_(const ::FLAC__StreamDecoder *decoder, void *client_data)
269                 {
270                         (void) decoder;
271                         FLAC__ASSERT(0 != client_data);
272                         Stream *instance = reinterpret_cast<Stream *>(client_data);
273                         FLAC__ASSERT(0 != instance);
274                         return instance->eof_callback();
275                 }
276
277                 ::FLAC__StreamDecoderWriteStatus Stream::write_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
278                 {
279                         (void)decoder;
280                         FLAC__ASSERT(0 != client_data);
281                         Stream *instance = reinterpret_cast<Stream *>(client_data);
282                         FLAC__ASSERT(0 != instance);
283                         return instance->write_callback(frame, buffer);
284                 }
285
286                 void Stream::metadata_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
287                 {
288                         (void)decoder;
289                         FLAC__ASSERT(0 != client_data);
290                         Stream *instance = reinterpret_cast<Stream *>(client_data);
291                         FLAC__ASSERT(0 != instance);
292                         instance->metadata_callback(metadata);
293                 }
294
295                 void Stream::error_callback_(const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
296                 {
297                         (void)decoder;
298                         FLAC__ASSERT(0 != client_data);
299                         Stream *instance = reinterpret_cast<Stream *>(client_data);
300                         FLAC__ASSERT(0 != instance);
301                         instance->error_callback(status);
302                 }
303
304         }
305 }