FLAC 1.4.2
Free Lossless Audio Codec
encoder.h
Go to the documentation of this file.
1/* libFLAC++ - Free Lossless Audio Codec library
2 * Copyright (C) 2002-2009 Josh Coalson
3 * Copyright (C) 2011-2022 Xiph.Org Foundation
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * - Neither the name of the Xiph.org Foundation nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
24 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */
32
33#ifndef FLACPP__ENCODER_H
34#define FLACPP__ENCODER_H
35
36#include "export.h"
37
38#include "FLAC/stream_encoder.h"
39#include "decoder.h"
40#include "metadata.h"
41
42
79namespace FLAC {
80 namespace Encoder {
81
103 public:
107 public:
108 inline State(::FLAC__StreamEncoderState state): state_(state) { }
109 inline operator ::FLAC__StreamEncoderState() const { return state_; }
110 inline const char *as_cstring() const { return ::FLAC__StreamEncoderStateString[state_]; }
111 inline const char *resolved_as_cstring(const Stream &encoder) const { return ::FLAC__stream_encoder_get_resolved_state_string(encoder.encoder_); }
112 protected:
114 };
115
116 Stream();
117 virtual ~Stream();
118
120
124 virtual bool is_valid() const;
125 inline operator bool() const { return is_valid(); }
127
128 virtual bool set_ogg_serial_number(long value);
129 virtual bool set_verify(bool value);
130 virtual bool set_streamable_subset(bool value);
131 virtual bool set_channels(uint32_t value);
132 virtual bool set_bits_per_sample(uint32_t value);
133 virtual bool set_sample_rate(uint32_t value);
134 virtual bool set_compression_level(uint32_t value);
135 virtual bool set_blocksize(uint32_t value);
136 virtual bool set_do_mid_side_stereo(bool value);
137 virtual bool set_loose_mid_side_stereo(bool value);
138 virtual bool set_apodization(const char *specification);
139 virtual bool set_max_lpc_order(uint32_t value);
140 virtual bool set_qlp_coeff_precision(uint32_t value);
141 virtual bool set_do_qlp_coeff_prec_search(bool value);
142 virtual bool set_do_escape_coding(bool value);
143 virtual bool set_do_exhaustive_model_search(bool value);
144 virtual bool set_min_residual_partition_order(uint32_t value);
145 virtual bool set_max_residual_partition_order(uint32_t value);
146 virtual bool set_rice_parameter_search_dist(uint32_t value);
147 virtual bool set_total_samples_estimate(FLAC__uint64 value);
148 virtual bool set_metadata(::FLAC__StreamMetadata **metadata, uint32_t num_blocks);
149 virtual bool set_metadata(FLAC::Metadata::Prototype **metadata, uint32_t num_blocks);
150 virtual bool set_limit_min_bitrate(bool value);
151
152 /* get_state() is not virtual since we want subclasses to be able to return their own state */
153 State get_state() const;
155 virtual void get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got);
156 virtual bool get_verify() const;
157 virtual bool get_streamable_subset() const;
158 virtual bool get_do_mid_side_stereo() const;
159 virtual bool get_loose_mid_side_stereo() const;
160 virtual uint32_t get_channels() const;
161 virtual uint32_t get_bits_per_sample() const;
162 virtual uint32_t get_sample_rate() const;
163 virtual uint32_t get_blocksize() const;
164 virtual uint32_t get_max_lpc_order() const;
165 virtual uint32_t get_qlp_coeff_precision() const;
166 virtual bool get_do_qlp_coeff_prec_search() const;
167 virtual bool get_do_escape_coding() const;
168 virtual bool get_do_exhaustive_model_search() const;
169 virtual uint32_t get_min_residual_partition_order() const;
170 virtual uint32_t get_max_residual_partition_order() const;
171 virtual uint32_t get_rice_parameter_search_dist() const;
172 virtual FLAC__uint64 get_total_samples_estimate() const;
173 virtual bool get_limit_min_bitrate() const;
174
177
178 virtual bool finish();
179
180 virtual bool process(const FLAC__int32 * const buffer[], uint32_t samples);
181 virtual bool process_interleaved(const FLAC__int32 buffer[], uint32_t samples);
182 protected:
184 virtual ::FLAC__StreamEncoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes);
185
187 virtual ::FLAC__StreamEncoderWriteStatus write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame) = 0;
188
190 virtual ::FLAC__StreamEncoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
191
193 virtual ::FLAC__StreamEncoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
194
197
198#if (defined __BORLANDC__) || (defined __GNUG__ && (__GNUG__ < 2 || (__GNUG__ == 2 && __GNUC_MINOR__ < 96))) || (defined __SUNPRO_CC)
199 // lame hack: some compilers can't see a protected encoder_ from nested State::resolved_as_cstring()
200 friend State;
201#endif
202 ::FLAC__StreamEncoder *encoder_;
203
204 static ::FLAC__StreamEncoderReadStatus read_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
205 static ::FLAC__StreamEncoderWriteStatus write_callback_(const ::FLAC__StreamEncoder *encoder, const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame, void *client_data);
206 static ::FLAC__StreamEncoderSeekStatus seek_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 absolute_byte_offset, void *client_data);
207 static ::FLAC__StreamEncoderTellStatus tell_callback_(const FLAC__StreamEncoder *encoder, FLAC__uint64 *absolute_byte_offset, void *client_data);
208 static void metadata_callback_(const ::FLAC__StreamEncoder *encoder, const ::FLAC__StreamMetadata *metadata, void *client_data);
209 private:
210 // Private and undefined so you can't use them:
211 Stream(const Stream &);
212 void operator=(const Stream &);
213 };
214
235 class FLACPP_API File: public Stream {
236 public:
237 File();
238 virtual ~File();
239
240 using Stream::init;
243 virtual ::FLAC__StreamEncoderInitStatus init(const std::string &filename);
244 using Stream::init_ogg;
248 protected:
250 virtual void progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate);
251
253 virtual ::FLAC__StreamEncoderWriteStatus write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame);
254 private:
255 static void progress_callback_(const ::FLAC__StreamEncoder *encoder, FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate, void *client_data);
256
257 // Private and undefined so you can't use them:
258 File(const Stream &);
259 void operator=(const Stream &);
260 };
261
262 }
263}
264
265#endif
This module contains #defines and symbols for exporting function calls, and providing version informa...
This module provides functions for creating and manipulating FLAC metadata blocks in memory,...
Definition: decoder.h:104
This class wraps the FLAC__StreamEncoder. If you are not encoding to a file, you may need to use FLAC...
Definition: encoder.h:235
virtual ::FLAC__StreamEncoderInitStatus init_ogg(const char *filename)
See FLAC__stream_encoder_init_ogg_file()
virtual ::FLAC__StreamEncoderInitStatus init_ogg(const std::string &filename)
See FLAC__stream_encoder_init_ogg_file()
virtual ::FLAC__StreamEncoderInitStatus init(const char *filename)
See FLAC__stream_encoder_init_file()
virtual ::FLAC__StreamEncoderInitStatus init(const std::string &filename)
See FLAC__stream_encoder_init_file()
virtual ::FLAC__StreamEncoderInitStatus init_ogg(FILE *file)
See FLAC__stream_encoder_init_ogg_FILE()
virtual ::FLAC__StreamEncoderWriteStatus write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)
This is a dummy implementation to satisfy the pure virtual in Stream that is actually supplied intern...
virtual void progress_callback(FLAC__uint64 bytes_written, FLAC__uint64 samples_written, uint32_t frames_written, uint32_t total_frames_estimate)
See FLAC__StreamEncoderProgressCallback.
virtual ::FLAC__StreamEncoderInitStatus init(FILE *file)
See FLAC__stream_encoder_init_FILE()
Definition: encoder.h:106
This class wraps the FLAC__StreamEncoder. If you are encoding to a file, FLAC::Encoder::File may be m...
Definition: encoder.h:102
virtual bool get_do_mid_side_stereo() const
See FLAC__stream_encoder_get_do_mid_side_stereo()
virtual bool set_do_mid_side_stereo(bool value)
See FLAC__stream_encoder_set_do_mid_side_stereo()
virtual bool set_max_residual_partition_order(uint32_t value)
See FLAC__stream_encoder_set_max_residual_partition_order()
virtual bool get_do_exhaustive_model_search() const
See FLAC__stream_encoder_get_do_exhaustive_model_search()
virtual ::FLAC__StreamEncoderInitStatus init()
See FLAC__stream_encoder_init_stream()
virtual bool set_compression_level(uint32_t value)
See FLAC__stream_encoder_set_compression_level()
virtual bool set_limit_min_bitrate(bool value)
See FLAC__stream_encoder_set_limit_min_bitrate()
virtual void get_verify_decoder_error_stats(FLAC__uint64 *absolute_sample, uint32_t *frame_number, uint32_t *channel, uint32_t *sample, FLAC__int32 *expected, FLAC__int32 *got)
See FLAC__stream_encoder_get_verify_decoder_error_stats()
virtual bool set_do_exhaustive_model_search(bool value)
See FLAC__stream_encoder_set_do_exhaustive_model_search()
virtual bool set_blocksize(uint32_t value)
See FLAC__stream_encoder_set_blocksize()
virtual bool set_min_residual_partition_order(uint32_t value)
See FLAC__stream_encoder_set_min_residual_partition_order()
virtual ::FLAC__StreamEncoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes)
See FLAC__StreamEncoderReadCallback.
virtual bool set_do_escape_coding(bool value)
See FLAC__stream_encoder_set_do_escape_coding()
virtual bool set_apodization(const char *specification)
See FLAC__stream_encoder_set_apodization()
virtual bool get_streamable_subset() const
See FLAC__stream_encoder_get_streamable_subset()
virtual uint32_t get_bits_per_sample() const
See FLAC__stream_encoder_get_bits_per_sample()
virtual ::FLAC__StreamEncoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset)
See FLAC__StreamEncoderTellCallback.
virtual bool set_sample_rate(uint32_t value)
See FLAC__stream_encoder_set_sample_rate()
virtual bool set_total_samples_estimate(FLAC__uint64 value)
See FLAC__stream_encoder_set_total_samples_estimate()
virtual bool set_metadata(FLAC::Metadata::Prototype **metadata, uint32_t num_blocks)
See FLAC__stream_encoder_set_metadata()
virtual bool set_qlp_coeff_precision(uint32_t value)
See FLAC__stream_encoder_set_qlp_coeff_precision()
virtual bool set_channels(uint32_t value)
See FLAC__stream_encoder_set_channels()
virtual ::FLAC__StreamEncoderInitStatus init_ogg()
See FLAC__stream_encoder_init_ogg_stream()
virtual bool set_bits_per_sample(uint32_t value)
See FLAC__stream_encoder_set_bits_per_sample()
virtual bool is_valid() const
virtual bool get_loose_mid_side_stereo() const
See FLAC__stream_encoder_get_loose_mid_side_stereo()
virtual uint32_t get_max_residual_partition_order() const
See FLAC__stream_encoder_get_max_residual_partition_order()
virtual uint32_t get_blocksize() const
See FLAC__stream_encoder_get_blocksize()
virtual bool get_do_qlp_coeff_prec_search() const
See FLAC__stream_encoder_get_do_qlp_coeff_prec_search()
virtual ::FLAC__StreamEncoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset)
See FLAC__StreamEncoderSeekCallback.
virtual bool set_rice_parameter_search_dist(uint32_t value)
See FLAC__stream_encoder_set_rice_parameter_search_dist()
virtual uint32_t get_qlp_coeff_precision() const
See FLAC__stream_encoder_get_qlp_coeff_precision()
virtual bool set_verify(bool value)
See FLAC__stream_encoder_set_verify()
virtual bool set_streamable_subset(bool value)
See FLAC__stream_encoder_set_streamable_subset()
virtual Decoder::Stream::State get_verify_decoder_state() const
See FLAC__stream_encoder_get_verify_decoder_state()
virtual uint32_t get_channels() const
See FLAC__stream_encoder_get_channels()
virtual bool set_do_qlp_coeff_prec_search(bool value)
See FLAC__stream_encoder_set_do_qlp_coeff_prec_search()
State get_state() const
See FLAC__stream_encoder_get_state()
virtual bool get_verify() const
See FLAC__stream_encoder_get_verify()
virtual bool set_loose_mid_side_stereo(bool value)
See FLAC__stream_encoder_set_loose_mid_side_stereo()
virtual uint32_t get_max_lpc_order() const
See FLAC__stream_encoder_get_max_lpc_order()
virtual uint32_t get_rice_parameter_search_dist() const
See FLAC__stream_encoder_get_rice_parameter_search_dist()
virtual bool get_do_escape_coding() const
See FLAC__stream_encoder_get_do_escape_coding()
virtual uint32_t get_min_residual_partition_order() const
See FLAC__stream_encoder_get_min_residual_partition_order()
virtual bool set_metadata(::FLAC__StreamMetadata **metadata, uint32_t num_blocks)
See FLAC__stream_encoder_set_metadata()
virtual bool process(const FLAC__int32 *const buffer[], uint32_t samples)
See FLAC__stream_encoder_process()
virtual uint32_t get_sample_rate() const
See FLAC__stream_encoder_get_sample_rate()
virtual bool get_limit_min_bitrate() const
See FLAC__stream_encoder_get_limit_min_bitrate()
virtual bool process_interleaved(const FLAC__int32 buffer[], uint32_t samples)
See FLAC__stream_encoder_process_interleaved()
virtual FLAC__uint64 get_total_samples_estimate() const
See FLAC__stream_encoder_get_total_samples_estimate()
virtual ::FLAC__StreamEncoderWriteStatus write_callback(const FLAC__byte buffer[], size_t bytes, uint32_t samples, uint32_t current_frame)=0
See FLAC__StreamEncoderWriteCallback.
virtual bool finish()
See FLAC__stream_encoder_finish()
virtual void metadata_callback(const ::FLAC__StreamMetadata *metadata)
See FLAC__StreamEncoderMetadataCallback.
virtual bool set_ogg_serial_number(long value)
See FLAC__stream_encoder_set_ogg_serial_number()
virtual bool set_max_lpc_order(uint32_t value)
See FLAC__stream_encoder_set_max_lpc_order()
Definition: metadata.h:109
This module contains the classes which implement the various decoders.
struct FLAC__StreamMetadata FLAC__StreamMetadata
const char *const FLAC__StreamEncoderStateString[]
FLAC__StreamEncoderReadStatus
Definition: stream_encoder.h:362
FLAC__StreamEncoderWriteStatus
Definition: stream_encoder.h:388
FLAC__StreamEncoderInitStatus
Definition: stream_encoder.h:293
FLAC__StreamEncoderSeekStatus
Definition: stream_encoder.h:408
FLAC__StreamEncoderTellStatus
Definition: stream_encoder.h:431
FLAC__StreamEncoderState
Definition: stream_encoder.h:241
const char * FLAC__stream_encoder_get_resolved_state_string(const FLAC__StreamEncoder *encoder)
#define FLACPP_API
Definition: export.h:88
This module contains the functions which implement the stream encoder.
Definition: stream_encoder.h:464
Definition: format.h:841

Copyright (c) 2000-2009 Josh Coalson Copyright (c) 2011-2022 Xiph.Org Foundation