1 /* libFLAC - Free Lossless Audio Codec library
2 * Copyright (C) 2000,2001,2002 Josh Coalson
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library 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 GNU
12 * Library General Public License for more details.
14 * You should have received a copy of the GNU Library General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
20 #ifndef FLAC__FILE_DECODER_H
21 #define FLAC__FILE_DECODER_H
23 #include "stream_decoder.h"
26 FLAC__FILE_DECODER_OK = 0,
27 FLAC__FILE_DECODER_SEEKING, /*@@@ NOTE: unused; remove this in the next minor-version */
28 FLAC__FILE_DECODER_END_OF_FILE,
29 FLAC__FILE_DECODER_ERROR_OPENING_FILE,
30 FLAC__FILE_DECODER_MEMORY_ALLOCATION_ERROR,
31 FLAC__FILE_DECODER_SEEK_ERROR,
32 FLAC__FILE_DECODER_STREAM_ERROR,
33 FLAC__FILE_DECODER_MD5_ERROR, /*@@@ NOTE: unused; remove this in the next minor-version */
34 FLAC__FILE_DECODER_STREAM_DECODER_ERROR,
35 FLAC__FILE_DECODER_ALREADY_INITIALIZED,
36 FLAC__FILE_DECODER_INVALID_CALLBACK,
37 FLAC__FILE_DECODER_UNINITIALIZED,
38 FLAC__FILE_DECODER_SEEKABLE_STREAM_ERROR = FLAC__FILE_DECODER_STREAM_ERROR /*@@@ NOTE: do the actual replacement in the next minor-version */
39 } FLAC__FileDecoderState;
40 extern const char *FLAC__FileDecoderStateString[];
42 /***********************************************************************
44 * class FLAC__FileDecoder : public FLAC__StreamDecoder
46 ***********************************************************************/
48 struct FLAC__FileDecoderProtected;
49 struct FLAC__FileDecoderPrivate;
51 struct FLAC__FileDecoderProtected *protected_; /* avoid the C++ keyword 'protected' */
52 struct FLAC__FileDecoderPrivate *private_; /* avoid the C++ keyword 'private' */
55 /***********************************************************************
57 * Class constructor/destructor
59 ***********************************************************************/
62 * Any parameters that are not set before FLAC__file_decoder_init()
63 * will take on the defaults from the constructor, shown below.
64 * For more on what the parameters mean, see the documentation.
66 * FLAC__bool md5_checking (DEFAULT: false) MD5 checking will be turned off if a seek is requested
67 * (*write_callback)() (DEFAULT: NULL ) The callbacks are the only values that MUST be set before FLAC__file_decoder_init()
68 * (*metadata_callback)() (DEFAULT: NULL )
69 * (*error_callback)() (DEFAULT: NULL )
70 * void* client_data (DEFAULT: NULL ) passed back through the callbacks
72 FLAC__FileDecoder *FLAC__file_decoder_new();
73 void FLAC__file_decoder_delete(FLAC__FileDecoder *);
75 /***********************************************************************
77 * Public class method prototypes
79 ***********************************************************************/
82 * Various "set" methods. These may only be called when the decoder
83 * is in the state FLAC__FILE_DECODER_UNINITIALIZED, i.e. after
84 * FLAC__file_decoder_new() or FLAC__file_decoder_finish(), but
85 * before FLAC__file_decoder_init(). If this is the case they will
86 * return true, otherwise false.
88 * NOTE that these functions do not validate the values as many are
89 * interdependent. The FLAC__file_decoder_init() function will do
90 * this, so make sure to pay attention to the state returned by
91 * FLAC__file_decoder_init().
93 * Any parameters that are not set before FLAC__file_decoder_init()
94 * will take on the defaults from the constructor. NOTE that
95 * FLAC__file_decoder_flush() or FLAC__file_decoder_reset() do
96 * NOT reset the values to the constructor defaults.
98 FLAC__bool FLAC__file_decoder_set_md5_checking(const FLAC__FileDecoder *decoder, FLAC__bool value);
99 FLAC__bool FLAC__file_decoder_set_filename(const FLAC__FileDecoder *decoder, const char *value); /* 'value' may not be 0; use "-" for stdin */
100 FLAC__bool FLAC__file_decoder_set_write_callback(const FLAC__FileDecoder *decoder, FLAC__StreamDecoderWriteStatus (*value)(const FLAC__FileDecoder *decoder, const FLAC__Frame *frame, const FLAC__int32 *buffer[], void *client_data));
101 FLAC__bool FLAC__file_decoder_set_metadata_callback(const FLAC__FileDecoder *decoder, void (*value)(const FLAC__FileDecoder *decoder, const FLAC__StreamMetaData *metadata, void *client_data));
102 FLAC__bool FLAC__file_decoder_set_error_callback(const FLAC__FileDecoder *decoder, void (*value)(const FLAC__FileDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data));
103 FLAC__bool FLAC__file_decoder_set_client_data(const FLAC__FileDecoder *decoder, void *value);
106 * Various "get" methods
108 FLAC__FileDecoderState FLAC__file_decoder_get_state(const FLAC__FileDecoder *decoder);
109 FLAC__bool FLAC__file_decoder_get_md5_checking(const FLAC__FileDecoder *decoder);
112 * Initialize the instance; should be called after construction and
113 * 'set' calls but before any of the 'process' or 'seek' calls. Will
114 * set and return the decoder state, which will be FLAC__FILE_DECODER_OK
115 * if initialization succeeded.
117 FLAC__FileDecoderState FLAC__file_decoder_init(FLAC__FileDecoder *decoder);
120 * Flush the decoding buffer, release resources, and return the decoder
121 * state to FLAC__FILE_DECODER_UNINITIALIZED. Only returns false if
122 * md5_checking is set AND the stored MD5 sum is non-zero AND the stored
123 * MD5 sum and computed MD5 sum do not match.
125 FLAC__bool FLAC__file_decoder_finish(FLAC__FileDecoder *decoder);
128 * Methods for decoding the data
130 FLAC__bool FLAC__file_decoder_process_whole_file(FLAC__FileDecoder *decoder);
131 FLAC__bool FLAC__file_decoder_process_metadata(FLAC__FileDecoder *decoder);
132 FLAC__bool FLAC__file_decoder_process_one_frame(FLAC__FileDecoder *decoder);
133 FLAC__bool FLAC__file_decoder_process_remaining_frames(FLAC__FileDecoder *decoder);
135 FLAC__bool FLAC__file_decoder_seek_absolute(FLAC__FileDecoder *decoder, FLAC__uint64 sample);