make --serial-number or the default random serial number apply only to the first...
[platform/upstream/flac.git] / src / flac / encode.h
index e637595..1f7e5a2 100644 (file)
@@ -1,5 +1,5 @@
 /* flac - Command-line FLAC encoder/decoder
- * Copyright (C) 2000,2001  Josh Coalson
+ * Copyright (C) 2000,2001,2002,2003,2004  Josh Coalson
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
 #ifndef flac__encode_h
 #define flac__encode_h
 
-#include "FLAC/ordinals.h"
+#include "FLAC/metadata.h"
+#include "utils.h"
 
-int encode_wav(const char *infile, const char *outfile, bool verbose, uint64 skip, bool verify, bool lax, bool do_mid_side, bool force_mid_side, bool do_exhaustive_model_search, bool do_qlp_coeff_prec_search, unsigned rice_optimization_level, unsigned max_lpc_order, unsigned blocksize, unsigned qlp_coeff_precision);
-int encode_raw(const char *infile, const char *outfile, bool verbose, uint64 skip, bool verify, bool lax, bool do_mid_side, bool force_mid_side, bool do_exhaustive_model_search, bool do_qlp_coeff_prec_search, unsigned rice_optimization_level, unsigned max_lpc_order, unsigned blocksize, unsigned qlp_coeff_precision, bool is_big_endian, bool is_unsigned_samples, unsigned channels, unsigned bps, unsigned sample_rate);
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
+typedef struct {
+       FLAC__bool verbose;
+       utils__SkipUntilSpecification skip_specification;
+       utils__SkipUntilSpecification until_specification;
+       FLAC__bool verify;
+#ifdef FLAC__HAS_OGG
+       FLAC__bool use_ogg;
+       long serial_number;
+#endif
+       FLAC__bool lax;
+       FLAC__bool do_mid_side;
+       FLAC__bool loose_mid_side;
+       FLAC__bool do_exhaustive_model_search;
+       FLAC__bool do_escape_coding;
+       FLAC__bool do_qlp_coeff_prec_search;
+       unsigned min_residual_partition_order;
+       unsigned max_residual_partition_order;
+       unsigned rice_parameter_search_dist;
+       unsigned max_lpc_order;
+       unsigned blocksize;
+       unsigned qlp_coeff_precision;
+       int padding;
+       char *requested_seek_points;
+       int num_requested_seek_points;
+       const char *cuesheet_filename;
+       FLAC__bool cued_seekpoints;
+
+       /* options related to --replay-gain and --sector-align */
+       FLAC__bool is_first_file;
+       FLAC__bool is_last_file;
+       FLAC__int32 **align_reservoir;
+       unsigned *align_reservoir_samples;
+       FLAC__bool replay_gain;
+       FLAC__bool sector_align;
+
+       FLAC__StreamMetadata *vorbis_comment;
+
+       struct {
+               FLAC__bool disable_constant_subframes;
+               FLAC__bool disable_fixed_subframes;
+               FLAC__bool disable_verbatim_subframes;
+       } debug;
+} encode_options_t;
+
+typedef struct {
+       encode_options_t common;
+} wav_encode_options_t;
+
+typedef struct {
+       encode_options_t common;
+
+       FLAC__bool is_big_endian;
+       FLAC__bool is_unsigned_samples;
+       unsigned channels;
+       unsigned bps;
+       unsigned sample_rate;
+} raw_encode_options_t;
+
+int flac__encode_aif(FILE *infile, long infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options);
+int flac__encode_wav(FILE *infile, long infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, wav_encode_options_t options);
+int flac__encode_raw(FILE *infile, long infilesize, const char *infilename, const char *outfilename, const FLAC__byte *lookahead, unsigned lookahead_length, raw_encode_options_t options);
 
 #endif