summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/libflac/src/flac/decode.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/libflac/src/flac/decode.h')
-rw-r--r--3rdparty/libflac/src/flac/decode.h74
1 files changed, 0 insertions, 74 deletions
diff --git a/3rdparty/libflac/src/flac/decode.h b/3rdparty/libflac/src/flac/decode.h
deleted file mode 100644
index 2ab9deb6605..00000000000
--- a/3rdparty/libflac/src/flac/decode.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/* flac - Command-line FLAC encoder/decoder
- * Copyright (C) 2000,2001,2002,2003,2004,2005,2006,2007 Josh Coalson
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version 2
- * of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- */
-
-#ifndef flac__decode_h
-#define flac__decode_h
-
-#if HAVE_CONFIG_H
-# include <config.h>
-#endif
-
-#include "analyze.h"
-#include "foreign_metadata.h"
-#include "utils.h"
-#include "share/replaygain_synthesis.h"
-
-
-typedef struct {
- FLAC__bool apply;
- FLAC__bool use_album_gain; /* false => use track gain */
- enum { RGSS_LIMIT__NONE, RGSS_LIMIT__PEAK, RGSS_LIMIT__HARD} limiter;
- NoiseShaping noise_shaping;
- double preamp;
-} replaygain_synthesis_spec_t;
-
-typedef struct {
- FLAC__bool treat_warnings_as_errors;
- FLAC__bool continue_through_decode_errors;
- replaygain_synthesis_spec_t replaygain_synthesis_spec;
-#if FLAC__HAS_OGG
- FLAC__bool is_ogg;
- FLAC__bool use_first_serial_number;
- long serial_number;
-#endif
- utils__SkipUntilSpecification skip_specification;
- utils__SkipUntilSpecification until_specification;
- FLAC__bool has_cue_specification;
- utils__CueSpecification cue_specification;
- FLAC__bool channel_map_none; /* --channel-map=none specified, eventually will expand to take actual channel map */
-} decode_options_t;
-
-/* used for AIFF also */
-typedef struct {
- decode_options_t common;
- foreign_metadata_t *foreign_metadata; /* NULL unless --keep-foreign-metadata requested */
-} wav_decode_options_t;
-
-typedef struct {
- decode_options_t common;
-
- FLAC__bool is_big_endian;
- FLAC__bool is_unsigned_samples;
-} raw_decode_options_t;
-
-/* outfile == 0 => test only */
-int flac__decode_aiff(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
-int flac__decode_wav(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
-int flac__decode_raw(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, raw_decode_options_t options);
-
-#endif