decode.h
上传用户:wstnjxml
上传日期:2014-04-03
资源大小:7248k
文件大小:2k
源码类别:

Windows CE

开发平台:

C/C++

  1. /* flac - Command-line FLAC encoder/decoder
  2.  * Copyright (C) 2000,2001,2002,2003,2004,2005  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. #ifndef flac__decode_h
  19. #define flac__decode_h
  20. #include "analyze.h"
  21. #include "utils.h"
  22. #include "share/replaygain_synthesis.h"
  23. #ifdef HAVE_CONFIG_H
  24. #include <config.h>
  25. #endif
  26. typedef struct {
  27. FLAC__bool apply;
  28. FLAC__bool use_album_gain; /* false => use track gain */
  29. enum { RGSS_LIMIT__NONE, RGSS_LIMIT__PEAK, RGSS_LIMIT__HARD} limiter;
  30. NoiseShaping noise_shaping;
  31. double preamp;
  32. } replaygain_synthesis_spec_t;
  33. typedef struct {
  34. FLAC__bool continue_through_decode_errors;
  35. replaygain_synthesis_spec_t replaygain_synthesis_spec;
  36. #ifdef FLAC__HAS_OGG
  37. FLAC__bool is_ogg;
  38. FLAC__bool use_first_serial_number;
  39. long serial_number;
  40. #endif
  41. utils__SkipUntilSpecification skip_specification;
  42. utils__SkipUntilSpecification until_specification;
  43. FLAC__bool has_cue_specification;
  44. utils__CueSpecification cue_specification;
  45. } decode_options_t;
  46. /* used for AIFF also */
  47. typedef struct {
  48. decode_options_t common;
  49. } wav_decode_options_t;
  50. typedef struct {
  51. decode_options_t common;
  52. FLAC__bool is_big_endian;
  53. FLAC__bool is_unsigned_samples;
  54. } raw_decode_options_t;
  55. /* outfile == 0 => test only */
  56. int flac__decode_aiff(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
  57. int flac__decode_wav(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, wav_decode_options_t options);
  58. int flac__decode_raw(const char *infilename, const char *outfilename, FLAC__bool analysis_mode, analysis_options aopts, raw_decode_options_t options);
  59. #endif