add 2005 to copyright notices
[platform/upstream/flac.git] / src / libOggFLAC++ / file_encoder.cpp
1 /* libOggFLAC++ - Free Lossless Audio Codec + Ogg library
2  * Copyright (C) 2002,2003,2004,2005  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 "OggFLAC++/encoder.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 OggFLAC {
41         namespace Encoder {
42
43                 File::File():
44                 encoder_(::OggFLAC__file_encoder_new())
45                 { }
46
47                 File::~File()
48                 {
49                         if(0 != encoder_) {
50                                 ::OggFLAC__file_encoder_finish(encoder_);
51                                 ::OggFLAC__file_encoder_delete(encoder_);
52                         }
53                 }
54
55                 bool File::set_serial_number(long value)
56                 {
57                         FLAC__ASSERT(is_valid());
58                         return (bool)::OggFLAC__file_encoder_set_serial_number(encoder_, value);
59                 }
60
61                 bool File::is_valid() const
62                 {
63                         return 0 != encoder_;
64                 }
65
66                 bool File::set_verify(bool value)
67                 {
68                         FLAC__ASSERT(is_valid());
69                         return (bool)::OggFLAC__file_encoder_set_verify(encoder_, value);
70                 }
71
72                 bool File::set_streamable_subset(bool value)
73                 {
74                         FLAC__ASSERT(is_valid());
75                         return (bool)::OggFLAC__file_encoder_set_streamable_subset(encoder_, value);
76                 }
77
78                 bool File::set_do_mid_side_stereo(bool value)
79                 {
80                         FLAC__ASSERT(is_valid());
81                         return (bool)::OggFLAC__file_encoder_set_do_mid_side_stereo(encoder_, value);
82                 }
83
84                 bool File::set_loose_mid_side_stereo(bool value)
85                 {
86                         FLAC__ASSERT(is_valid());
87                         return (bool)::OggFLAC__file_encoder_set_loose_mid_side_stereo(encoder_, value);
88                 }
89
90                 bool File::set_channels(unsigned value)
91                 {
92                         FLAC__ASSERT(is_valid());
93                         return (bool)::OggFLAC__file_encoder_set_channels(encoder_, value);
94                 }
95
96                 bool File::set_bits_per_sample(unsigned value)
97                 {
98                         FLAC__ASSERT(is_valid());
99                         return (bool)::OggFLAC__file_encoder_set_bits_per_sample(encoder_, value);
100                 }
101
102                 bool File::set_sample_rate(unsigned value)
103                 {
104                         FLAC__ASSERT(is_valid());
105                         return (bool)::OggFLAC__file_encoder_set_sample_rate(encoder_, value);
106                 }
107
108                 bool File::set_blocksize(unsigned value)
109                 {
110                         FLAC__ASSERT(is_valid());
111                         return (bool)::OggFLAC__file_encoder_set_blocksize(encoder_, value);
112                 }
113
114                 bool File::set_max_lpc_order(unsigned value)
115                 {
116                         FLAC__ASSERT(is_valid());
117                         return (bool)::OggFLAC__file_encoder_set_max_lpc_order(encoder_, value);
118                 }
119
120                 bool File::set_qlp_coeff_precision(unsigned value)
121                 {
122                         FLAC__ASSERT(is_valid());
123                         return (bool)::OggFLAC__file_encoder_set_qlp_coeff_precision(encoder_, value);
124                 }
125
126                 bool File::set_do_qlp_coeff_prec_search(bool value)
127                 {
128                         FLAC__ASSERT(is_valid());
129                         return (bool)::OggFLAC__file_encoder_set_do_qlp_coeff_prec_search(encoder_, value);
130                 }
131
132                 bool File::set_do_escape_coding(bool value)
133                 {
134                         FLAC__ASSERT(is_valid());
135                         return (bool)::OggFLAC__file_encoder_set_do_escape_coding(encoder_, value);
136                 }
137
138                 bool File::set_do_exhaustive_model_search(bool value)
139                 {
140                         FLAC__ASSERT(is_valid());
141                         return (bool)::OggFLAC__file_encoder_set_do_exhaustive_model_search(encoder_, value);
142                 }
143
144                 bool File::set_min_residual_partition_order(unsigned value)
145                 {
146                         FLAC__ASSERT(is_valid());
147                         return (bool)::OggFLAC__file_encoder_set_min_residual_partition_order(encoder_, value);
148                 }
149
150                 bool File::set_max_residual_partition_order(unsigned value)
151                 {
152                         FLAC__ASSERT(is_valid());
153                         return (bool)::OggFLAC__file_encoder_set_max_residual_partition_order(encoder_, value);
154                 }
155
156                 bool File::set_rice_parameter_search_dist(unsigned value)
157                 {
158                         FLAC__ASSERT(is_valid());
159                         return (bool)::OggFLAC__file_encoder_set_rice_parameter_search_dist(encoder_, value);
160                 }
161
162                 bool File::set_total_samples_estimate(FLAC__uint64 value)
163                 {
164                         FLAC__ASSERT(is_valid());
165                         return (bool)::OggFLAC__file_encoder_set_total_samples_estimate(encoder_, value);
166                 }
167
168                 bool File::set_metadata(::FLAC__StreamMetadata **metadata, unsigned num_blocks)
169                 {
170                         FLAC__ASSERT(is_valid());
171                         return (bool)::OggFLAC__file_encoder_set_metadata(encoder_, metadata, num_blocks);
172                 }
173
174                 bool File::set_filename(const char *value)
175                 {
176                         FLAC__ASSERT(is_valid());
177                         return (bool)::OggFLAC__file_encoder_set_filename(encoder_, value);
178                 }
179
180                 File::State File::get_state() const
181                 {
182                         FLAC__ASSERT(is_valid());
183                         return State(::OggFLAC__file_encoder_get_state(encoder_));
184                 }
185
186                 SeekableStream::State File::get_seekable_stream_encoder_state() const
187                 {
188                         FLAC__ASSERT(is_valid());
189                         return SeekableStream::State(::OggFLAC__file_encoder_get_seekable_stream_encoder_state(encoder_));
190                 }
191
192                 FLAC::Encoder::Stream::State File::get_FLAC_stream_encoder_state() const
193                 {
194                         FLAC__ASSERT(is_valid());
195                         return FLAC::Encoder::Stream::State(::OggFLAC__file_encoder_get_FLAC_stream_encoder_state(encoder_));
196                 }
197
198                 FLAC::Decoder::Stream::State File::get_verify_decoder_state() const
199                 {
200                         FLAC__ASSERT(is_valid());
201                         return FLAC::Decoder::Stream::State(::OggFLAC__file_encoder_get_verify_decoder_state(encoder_));
202                 }
203
204                 void File::get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, unsigned *frame_number, unsigned *channel, unsigned *sample, FLAC__int32 *expected, FLAC__int32 *got)
205                 {
206                         FLAC__ASSERT(is_valid());
207                         ::OggFLAC__file_encoder_get_verify_decoder_error_stats(encoder_, absolute_sample, frame_number, channel, sample, expected, got);
208                 }
209
210                 bool File::get_verify() const
211                 {
212                         FLAC__ASSERT(is_valid());
213                         return (bool)::OggFLAC__file_encoder_get_verify(encoder_);
214                 }
215
216                 bool File::get_streamable_subset() const
217                 {
218                         FLAC__ASSERT(is_valid());
219                         return (bool)::OggFLAC__file_encoder_get_streamable_subset(encoder_);
220                 }
221
222                 bool File::get_do_mid_side_stereo() const
223                 {
224                         FLAC__ASSERT(is_valid());
225                         return (bool)::OggFLAC__file_encoder_get_do_mid_side_stereo(encoder_);
226                 }
227
228                 bool File::get_loose_mid_side_stereo() const
229                 {
230                         FLAC__ASSERT(is_valid());
231                         return (bool)::OggFLAC__file_encoder_get_loose_mid_side_stereo(encoder_);
232                 }
233
234                 unsigned File::get_channels() const
235                 {
236                         FLAC__ASSERT(is_valid());
237                         return ::OggFLAC__file_encoder_get_channels(encoder_);
238                 }
239
240                 unsigned File::get_bits_per_sample() const
241                 {
242                         FLAC__ASSERT(is_valid());
243                         return ::OggFLAC__file_encoder_get_bits_per_sample(encoder_);
244                 }
245
246                 unsigned File::get_sample_rate() const
247                 {
248                         FLAC__ASSERT(is_valid());
249                         return ::OggFLAC__file_encoder_get_sample_rate(encoder_);
250                 }
251
252                 unsigned File::get_blocksize() const
253                 {
254                         FLAC__ASSERT(is_valid());
255                         return ::OggFLAC__file_encoder_get_blocksize(encoder_);
256                 }
257
258                 unsigned File::get_max_lpc_order() const
259                 {
260                         FLAC__ASSERT(is_valid());
261                         return ::OggFLAC__file_encoder_get_max_lpc_order(encoder_);
262                 }
263
264                 unsigned File::get_qlp_coeff_precision() const
265                 {
266                         FLAC__ASSERT(is_valid());
267                         return ::OggFLAC__file_encoder_get_qlp_coeff_precision(encoder_);
268                 }
269
270                 bool File::get_do_qlp_coeff_prec_search() const
271                 {
272                         FLAC__ASSERT(is_valid());
273                         return (bool)::OggFLAC__file_encoder_get_do_qlp_coeff_prec_search(encoder_);
274                 }
275
276                 bool File::get_do_escape_coding() const
277                 {
278                         FLAC__ASSERT(is_valid());
279                         return (bool)::OggFLAC__file_encoder_get_do_escape_coding(encoder_);
280                 }
281
282                 bool File::get_do_exhaustive_model_search() const
283                 {
284                         FLAC__ASSERT(is_valid());
285                         return (bool)::OggFLAC__file_encoder_get_do_exhaustive_model_search(encoder_);
286                 }
287
288                 unsigned File::get_min_residual_partition_order() const
289                 {
290                         FLAC__ASSERT(is_valid());
291                         return ::OggFLAC__file_encoder_get_min_residual_partition_order(encoder_);
292                 }
293
294                 unsigned File::get_max_residual_partition_order() const
295                 {
296                         FLAC__ASSERT(is_valid());
297                         return ::OggFLAC__file_encoder_get_max_residual_partition_order(encoder_);
298                 }
299
300                 unsigned File::get_rice_parameter_search_dist() const
301                 {
302                         FLAC__ASSERT(is_valid());
303                         return ::OggFLAC__file_encoder_get_rice_parameter_search_dist(encoder_);
304                 }
305
306                 FLAC__uint64 File::get_total_samples_estimate() const
307                 {
308                         FLAC__ASSERT(is_valid());
309                         return ::OggFLAC__file_encoder_get_total_samples_estimate(encoder_);
310                 }
311
312                 File::State File::init()
313                 {
314                         FLAC__ASSERT(is_valid());
315                         ::OggFLAC__file_encoder_set_progress_callback(encoder_, progress_callback_);
316                         ::OggFLAC__file_encoder_set_client_data(encoder_, (void*)this);
317                         return State(::OggFLAC__file_encoder_init(encoder_));
318                 }
319
320                 void File::finish()
321                 {
322                         FLAC__ASSERT(is_valid());
323                         ::OggFLAC__file_encoder_finish(encoder_);
324                 }
325
326                 bool File::process(const FLAC__int32 * const buffer[], unsigned samples)
327                 {
328                         FLAC__ASSERT(is_valid());
329                         return (bool)::OggFLAC__file_encoder_process(encoder_, buffer, samples);
330                 }
331
332                 bool File::process_interleaved(const FLAC__int32 buffer[], unsigned samples)
333                 {
334                         FLAC__ASSERT(is_valid());
335                         return (bool)::OggFLAC__file_encoder_process_interleaved(encoder_, buffer, samples);
336                 }
337
338                 void File::progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, unsigned frames_written, unsigned total_frames_estimate)
339                 {
340                         (void)bytes_written, (void)samples_written, (void)frames_written, (void)total_frames_estimate;
341                 }
342
343                 void File::progress_callback_(const ::OggFLAC__FileEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, unsigned frames_written, unsigned total_frames_estimate, void *client_data)
344                 {
345                         (void)encoder;
346                         FLAC__ASSERT(0 != client_data);
347                         File *instance = reinterpret_cast<File *>(client_data);
348                         FLAC__ASSERT(0 != instance);
349                         instance->progress_callback(bytes_written, samples_written, frames_written, total_frames_estimate);
350                 }
351
352         }
353 }