add --cue option to flac, and tests and documentation
[platform/upstream/flac.git] / src / flac / decode.h
1 /* flac - Command-line FLAC encoder/decoder
2  * Copyright (C) 2000,2001,2002,2003,2004  Josh Coalson
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License
6  * as published by the Free Software Foundation; either version 2
7  * of the License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17  */
18
19 #ifndef flac__decode_h
20 #define flac__decode_h
21
22 #include "analyze.h"
23 #include "utils.h"
24 #include "share/replaygain_synthesis.h"
25
26 #ifdef HAVE_CONFIG_H
27 #include <config.h>
28 #endif
29
30 typedef struct {
31         FLAC__bool apply;
32         FLAC__bool use_album_gain; /* false => use track gain */
33         enum { RGSS_LIMIT__NONE, RGSS_LIMIT__PEAK, RGSS_LIMIT__HARD} limiter;
34         NoiseShaping noise_shaping;
35         double preamp;
36 } replaygain_synthesis_spec_t;
37
38 typedef struct {
39         FLAC__bool verbose;
40         FLAC__bool continue_through_decode_errors;
41         replaygain_synthesis_spec_t replaygain_synthesis_spec;
42 #ifdef FLAC__HAS_OGG
43         FLAC__bool is_ogg;
44         FLAC__bool use_first_serial_number;
45         long serial_number;
46 #endif
47         utils__SkipUntilSpecification skip_specification;
48         utils__SkipUntilSpecification until_specification;
49         FLAC__bool has_cue_specification;
50         utils__CueSpecification cue_specification;
51 } decode_options_t;
52
53 /* used for AIFF also */
54 typedef struct {
55         decode_options_t common;
56 } wav_decode_options_t;
57
58 typedef struct {
59         decode_options_t common;
60
61         FLAC__bool is_big_endian;
62         FLAC__bool is_unsigned_samples;
63 } raw_decode_options_t;
64
65 /* outfile == 0 => test only */
66 int flac__decode_aiff(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
67 int flac__decode_wav(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
68 int flac__decode_raw(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, raw_decode_options_t options);
69
70 #endif