remove now-obsolete libOggFLAC stuff
[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                 // ------------------------------------------------------------
44                 //
45                 // Stream
46                 //
47                 // ------------------------------------------------------------
48
49                 Stream::Stream():
50                 decoder_(::FLAC__stream_decoder_new())
51                 { }
52
53                 Stream::~Stream()
54                 {
55                         if(0 != decoder_) {
56                                 ::FLAC__stream_decoder_finish(decoder_);
57                                 ::FLAC__stream_decoder_delete(decoder_);
58                         }
59                 }
60
61                 bool Stream::is_valid() const
62                 {
63                         return 0 != decoder_;
64                 }
65
66                 bool Stream::set_ogg_serial_number(long value)
67                 {
68                         FLAC__ASSERT(is_valid());
69                         return (bool)::FLAC__stream_decoder_set_ogg_serial_number(decoder_, value);
70                 }
71
72                 bool Stream::set_md5_checking(bool value)
73                 {
74                         FLAC__ASSERT(is_valid());
75                         return (bool)::FLAC__stream_decoder_set_md5_checking(decoder_, value);
76                 }
77
78                 bool Stream::set_metadata_respond(::FLAC__MetadataType type)
79                 {
80                         FLAC__ASSERT(is_valid());
81                         return (bool)::FLAC__stream_decoder_set_metadata_respond(decoder_, type);
82                 }
83
84                 bool Stream::set_metadata_respond_application(const FLAC__byte id[4])
85                 {
86                         FLAC__ASSERT(is_valid());
87                         return (bool)::FLAC__stream_decoder_set_metadata_respond_application(decoder_, id);
88                 }
89
90                 bool Stream::set_metadata_respond_all()
91                 {
92                         FLAC__ASSERT(is_valid());
93                         return (bool)::FLAC__stream_decoder_set_metadata_respond_all(decoder_);
94                 }
95
96                 bool Stream::set_metadata_ignore(::FLAC__MetadataType type)
97                 {
98                         FLAC__ASSERT(is_valid());
99                         return (bool)::FLAC__stream_decoder_set_metadata_ignore(decoder_, type);
100                 }
101
102                 bool Stream::set_metadata_ignore_application(const FLAC__byte id[4])
103                 {
104                         FLAC__ASSERT(is_valid());
105                         return (bool)::FLAC__stream_decoder_set_metadata_ignore_application(decoder_, id);
106                 }
107
108                 bool Stream::set_metadata_ignore_all()
109                 {
110                         FLAC__ASSERT(is_valid());
111                         return (bool)::FLAC__stream_decoder_set_metadata_ignore_all(decoder_);
112                 }
113
114                 Stream::State Stream::get_state() const
115                 {
116                         FLAC__ASSERT(is_valid());
117                         return State(::FLAC__stream_decoder_get_state(decoder_));
118                 }
119
120                 bool Stream::get_md5_checking() const
121                 {
122                         FLAC__ASSERT(is_valid());
123                         return (bool)::FLAC__stream_decoder_get_md5_checking(decoder_);
124                 }
125
126                 FLAC__uint64 Stream::get_total_samples() const
127                 {
128                         FLAC__ASSERT(is_valid());
129                         return ::FLAC__stream_decoder_get_total_samples(decoder_);
130                 }
131
132                 unsigned Stream::get_channels() const
133                 {
134                         FLAC__ASSERT(is_valid());
135                         return ::FLAC__stream_decoder_get_channels(decoder_);
136                 }
137
138                 ::FLAC__ChannelAssignment Stream::get_channel_assignment() const
139                 {
140                         FLAC__ASSERT(is_valid());
141                         return ::FLAC__stream_decoder_get_channel_assignment(decoder_);
142                 }
143
144                 unsigned Stream::get_bits_per_sample() const
145                 {
146                         FLAC__ASSERT(is_valid());
147                         return ::FLAC__stream_decoder_get_bits_per_sample(decoder_);
148                 }
149
150                 unsigned Stream::get_sample_rate() const
151                 {
152                         FLAC__ASSERT(is_valid());
153                         return ::FLAC__stream_decoder_get_sample_rate(decoder_);
154                 }
155
156                 unsigned Stream::get_blocksize() const
157                 {
158                         FLAC__ASSERT(is_valid());
159                         return ::FLAC__stream_decoder_get_blocksize(decoder_);
160                 }
161
162                 ::FLAC__StreamDecoderInitStatus Stream::init()
163                 {
164                         FLAC__ASSERT(is_valid());
165                         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);
166                 }
167
168                 ::FLAC__StreamDecoderInitStatus Stream::init_ogg()
169                 {
170                         FLAC__ASSERT(is_valid());
171                         return ::FLAC__stream_decoder_init_ogg_stream(decoder_, read_callback_, seek_callback_, tell_callback_, length_callback_, eof_callback_, write_callback_, metadata_callback_, error_callback_, /*client_data=*/(void*)this);
172                 }
173
174                 void Stream::finish()
175                 {
176                         FLAC__ASSERT(is_valid());
177                         ::FLAC__stream_decoder_finish(decoder_);
178                 }
179
180                 bool Stream::flush()
181                 {
182                         FLAC__ASSERT(is_valid());
183                         return (bool)::FLAC__stream_decoder_flush(decoder_);
184                 }
185
186                 bool Stream::reset()
187                 {
188                         FLAC__ASSERT(is_valid());
189                         return (bool)::FLAC__stream_decoder_reset(decoder_);
190                 }
191
192                 bool Stream::process_single()
193                 {
194                         FLAC__ASSERT(is_valid());
195                         return (bool)::FLAC__stream_decoder_process_single(decoder_);
196                 }
197
198                 bool Stream::process_until_end_of_metadata()
199                 {
200                         FLAC__ASSERT(is_valid());
201                         return (bool)::FLAC__stream_decoder_process_until_end_of_metadata(decoder_);
202                 }
203
204                 bool Stream::process_until_end_of_stream()
205                 {
206                         FLAC__ASSERT(is_valid());
207                         return (bool)::FLAC__stream_decoder_process_until_end_of_stream(decoder_);
208                 }
209
210                 bool Stream::skip_single_frame()
211                 {
212                         FLAC__ASSERT(is_valid());
213                         return (bool)::FLAC__stream_decoder_skip_single_frame(decoder_);
214                 }
215
216                 bool Stream::seek_absolute(FLAC__uint64 sample)
217                 {
218                         FLAC__ASSERT(is_valid());
219                         return (bool)::FLAC__stream_decoder_seek_absolute(decoder_, sample);
220                 }
221
222                 ::FLAC__StreamDecoderSeekStatus Stream::seek_callback(FLAC__uint64 absolute_byte_offset)
223                 {
224                         (void)absolute_byte_offset;
225                         return ::FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED;
226                 }
227
228                 ::FLAC__StreamDecoderTellStatus Stream::tell_callback(FLAC__uint64 *absolute_byte_offset)
229                 {
230                         (void)absolute_byte_offset;
231                         return ::FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED;
232                 }
233
234                 ::FLAC__StreamDecoderLengthStatus Stream::length_callback(FLAC__uint64 *stream_length)
235                 {
236                         (void)stream_length;
237                         return ::FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED;
238                 }
239
240                 bool Stream::eof_callback()
241                 {
242                         return false;
243                 }
244
245                 void Stream::metadata_callback(const ::FLAC__StreamMetadata *metadata)
246                 {
247                         (void)metadata;
248                 }
249
250                 ::FLAC__StreamDecoderReadStatus Stream::read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, 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->read_callback(buffer, bytes);
257                 }
258
259                 ::FLAC__StreamDecoderSeekStatus Stream::seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, 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->seek_callback(absolute_byte_offset);
266                 }
267
268                 ::FLAC__StreamDecoderTellStatus Stream::tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, 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->tell_callback(absolute_byte_offset);
275                 }
276
277                 ::FLAC__StreamDecoderLengthStatus Stream::length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, 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->length_callback(stream_length);
284                 }
285
286                 FLAC__bool Stream::eof_callback_(const ::FLAC__StreamDecoder *decoder, 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                         return instance->eof_callback();
293                 }
294
295                 ::FLAC__StreamDecoderWriteStatus Stream::write_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], 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                         return instance->write_callback(frame, buffer);
302                 }
303
304                 void Stream::metadata_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
305                 {
306                         (void)decoder;
307                         FLAC__ASSERT(0 != client_data);
308                         Stream *instance = reinterpret_cast<Stream *>(client_data);
309                         FLAC__ASSERT(0 != instance);
310                         instance->metadata_callback(metadata);
311                 }
312
313                 void Stream::error_callback_(const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
314                 {
315                         (void)decoder;
316                         FLAC__ASSERT(0 != client_data);
317                         Stream *instance = reinterpret_cast<Stream *>(client_data);
318                         FLAC__ASSERT(0 != instance);
319                         instance->error_callback(status);
320                 }
321
322                 // ------------------------------------------------------------
323                 //
324                 // File
325                 //
326                 // ------------------------------------------------------------
327
328                 File::File():
329                         Stream()
330                 { }
331
332                 File::~File()
333                 {
334                 }
335
336                 ::FLAC__StreamDecoderInitStatus File::init(FILE *file)
337                 {
338                         FLAC__ASSERT(0 != decoder_);
339                         return ::FLAC__stream_decoder_init_FILE(decoder_, file, write_callback_, metadata_callback_, error_callback_, /*client_data=*/(void*)this);
340                 }
341
342                 ::FLAC__StreamDecoderInitStatus File::init(const char *filename)
343                 {
344                         FLAC__ASSERT(0 != decoder_);
345                         return ::FLAC__stream_decoder_init_file(decoder_, filename, write_callback_, metadata_callback_, error_callback_, /*client_data=*/(void*)this);
346                 }
347
348                 ::FLAC__StreamDecoderInitStatus File::init(const std::string &filename)
349                 {
350                         return init(filename.c_str());
351                 }
352
353                 ::FLAC__StreamDecoderInitStatus File::init_ogg(FILE *file)
354                 {
355                         FLAC__ASSERT(0 != decoder_);
356                         return ::FLAC__stream_decoder_init_ogg_FILE(decoder_, file, write_callback_, metadata_callback_, error_callback_, /*client_data=*/(void*)this);
357                 }
358
359                 ::FLAC__StreamDecoderInitStatus File::init_ogg(const char *filename)
360                 {
361                         FLAC__ASSERT(0 != decoder_);
362                         return ::FLAC__stream_decoder_init_ogg_file(decoder_, filename, write_callback_, metadata_callback_, error_callback_, /*client_data=*/(void*)this);
363                 }
364
365                 ::FLAC__StreamDecoderInitStatus File::init_ogg(const std::string &filename)
366                 {
367                         return init_ogg(filename.c_str());
368                 }
369
370                 // This is a dummy to satisfy the pure virtual from Stream; the
371                 // read callback will never be called since we are initializing
372                 // with FLAC__stream_decoder_init_FILE() or
373                 // FLAC__stream_decoder_init_file() and those supply the read
374                 // callback internally.
375                 ::FLAC__StreamDecoderReadStatus File::read_callback(FLAC__byte buffer[], size_t *bytes)
376                 {
377                         (void)buffer, (void)bytes;
378                         FLAC__ASSERT(false);
379                         return ::FLAC__STREAM_DECODER_READ_STATUS_ABORT; // double protection
380                 }
381
382         }
383 }