decoder.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. /* libFLAC++ - Free Lossless Audio Codec library
  2. * Copyright (C) 2002-2009 Josh Coalson
  3. * Copyright (C) 2011-2014 Xiph.Org Foundation
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. *
  9. * - Redistributions of source code must retain the above copyright
  10. * notice, this list of conditions and the following disclaimer.
  11. *
  12. * - Redistributions in binary form must reproduce the above copyright
  13. * notice, this list of conditions and the following disclaimer in the
  14. * documentation and/or other materials provided with the distribution.
  15. *
  16. * - Neither the name of the Xiph.org Foundation nor the names of its
  17. * contributors may be used to endorse or promote products derived from
  18. * this software without specific prior written permission.
  19. *
  20. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR
  24. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  25. * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  26. * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  27. * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  28. * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  29. * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  30. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. */
  32. #ifndef FLACPP__DECODER_H
  33. #define FLACPP__DECODER_H
  34. #include "export.h"
  35. #include <string>
  36. #include "FLAC/stream_decoder.h"
  37. /** \file include/FLAC++/decoder.h
  38. *
  39. * \brief
  40. * This module contains the classes which implement the various
  41. * decoders.
  42. *
  43. * See the detailed documentation in the
  44. * \link flacpp_decoder decoder \endlink module.
  45. */
  46. /** \defgroup flacpp_decoder FLAC++/decoder.h: decoder classes
  47. * \ingroup flacpp
  48. *
  49. * \brief
  50. * This module describes the decoder layers provided by libFLAC++.
  51. *
  52. * The libFLAC++ decoder classes are object wrappers around their
  53. * counterparts in libFLAC. All decoding layers available in
  54. * libFLAC are also provided here. The interface is very similar;
  55. * make sure to read the \link flac_decoder libFLAC decoder module \endlink.
  56. *
  57. * There are only two significant differences here. First, instead of
  58. * passing in C function pointers for callbacks, you inherit from the
  59. * decoder class and provide implementations for the callbacks in your
  60. * derived class; because of this there is no need for a 'client_data'
  61. * property.
  62. *
  63. * Second, there are two stream decoder classes. FLAC::Decoder::Stream
  64. * is used for the same cases that FLAC__stream_decoder_init_stream() /
  65. * FLAC__stream_decoder_init_ogg_stream() are used, and FLAC::Decoder::File
  66. * is used for the same cases that
  67. * FLAC__stream_decoder_init_FILE() and FLAC__stream_decoder_init_file() /
  68. * FLAC__stream_decoder_init_ogg_FILE() and FLAC__stream_decoder_init_ogg_file()
  69. * are used.
  70. */
  71. namespace FLAC {
  72. namespace Decoder {
  73. /** \ingroup flacpp_decoder
  74. * \brief
  75. * This class wraps the ::FLAC__StreamDecoder. If you are
  76. * decoding from a file, FLAC::Decoder::File may be more
  77. * convenient.
  78. *
  79. * The usage of this class is similar to FLAC__StreamDecoder,
  80. * except instead of providing callbacks to
  81. * FLAC__stream_decoder_init*_stream(), you will inherit from this
  82. * class and override the virtual callback functions with your
  83. * own implementations, then call init() or init_ogg(). The rest
  84. * of the calls work the same as in the C layer.
  85. *
  86. * Only the read, write, and error callbacks are mandatory. The
  87. * others are optional; this class provides default
  88. * implementations that do nothing. In order for seeking to work
  89. * you must overide seek_callback(), tell_callback(),
  90. * length_callback(), and eof_callback().
  91. */
  92. class FLACPP_API Stream {
  93. public:
  94. /** This class is a wrapper around FLAC__StreamDecoderState.
  95. */
  96. class FLACPP_API State {
  97. public:
  98. inline State(::FLAC__StreamDecoderState state): state_(state) { }
  99. inline operator ::FLAC__StreamDecoderState() const { return state_; }
  100. inline const char *as_cstring() const { return ::FLAC__StreamDecoderStateString[state_]; }
  101. inline const char *resolved_as_cstring(const Stream &decoder) const { return ::FLAC__stream_decoder_get_resolved_state_string(decoder.decoder_); }
  102. protected:
  103. ::FLAC__StreamDecoderState state_;
  104. };
  105. Stream();
  106. virtual ~Stream();
  107. //@{
  108. /** Call after construction to check the that the object was created
  109. * successfully. If not, use get_state() to find out why not.
  110. */
  111. virtual bool is_valid() const;
  112. inline operator bool() const { return is_valid(); } ///< See is_valid()
  113. //@}
  114. virtual bool set_ogg_serial_number(long value); ///< See FLAC__stream_decoder_set_ogg_serial_number()
  115. virtual bool set_md5_checking(bool value); ///< See FLAC__stream_decoder_set_md5_checking()
  116. virtual bool set_metadata_respond(::FLAC__MetadataType type); ///< See FLAC__stream_decoder_set_metadata_respond()
  117. virtual bool set_metadata_respond_application(const FLAC__byte id[4]); ///< See FLAC__stream_decoder_set_metadata_respond_application()
  118. virtual bool set_metadata_respond_all(); ///< See FLAC__stream_decoder_set_metadata_respond_all()
  119. virtual bool set_metadata_ignore(::FLAC__MetadataType type); ///< See FLAC__stream_decoder_set_metadata_ignore()
  120. virtual bool set_metadata_ignore_application(const FLAC__byte id[4]); ///< See FLAC__stream_decoder_set_metadata_ignore_application()
  121. virtual bool set_metadata_ignore_all(); ///< See FLAC__stream_decoder_set_metadata_ignore_all()
  122. /* get_state() is not virtual since we want subclasses to be able to return their own state */
  123. State get_state() const; ///< See FLAC__stream_decoder_get_state()
  124. virtual bool get_md5_checking() const; ///< See FLAC__stream_decoder_get_md5_checking()
  125. virtual FLAC__uint64 get_total_samples() const; ///< See FLAC__stream_decoder_get_total_samples()
  126. virtual unsigned get_channels() const; ///< See FLAC__stream_decoder_get_channels()
  127. virtual ::FLAC__ChannelAssignment get_channel_assignment() const; ///< See FLAC__stream_decoder_get_channel_assignment()
  128. virtual unsigned get_bits_per_sample() const; ///< See FLAC__stream_decoder_get_bits_per_sample()
  129. virtual unsigned get_sample_rate() const; ///< See FLAC__stream_decoder_get_sample_rate()
  130. virtual unsigned get_blocksize() const; ///< See FLAC__stream_decoder_get_blocksize()
  131. virtual bool get_decode_position(FLAC__uint64 *position) const; ///< See FLAC__stream_decoder_get_decode_position()
  132. virtual ::FLAC__StreamDecoderInitStatus init(); ///< Seek FLAC__stream_decoder_init_stream()
  133. virtual ::FLAC__StreamDecoderInitStatus init_ogg(); ///< Seek FLAC__stream_decoder_init_ogg_stream()
  134. virtual bool finish(); ///< See FLAC__stream_decoder_finish()
  135. virtual bool flush(); ///< See FLAC__stream_decoder_flush()
  136. virtual bool reset(); ///< See FLAC__stream_decoder_reset()
  137. virtual bool process_single(); ///< See FLAC__stream_decoder_process_single()
  138. virtual bool process_until_end_of_metadata(); ///< See FLAC__stream_decoder_process_until_end_of_metadata()
  139. virtual bool process_until_end_of_stream(); ///< See FLAC__stream_decoder_process_until_end_of_stream()
  140. virtual bool skip_single_frame(); ///< See FLAC__stream_decoder_skip_single_frame()
  141. virtual bool seek_absolute(FLAC__uint64 sample); ///< See FLAC__stream_decoder_seek_absolute()
  142. protected:
  143. /// see FLAC__StreamDecoderReadCallback
  144. virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes) = 0;
  145. /// see FLAC__StreamDecoderSeekCallback
  146. virtual ::FLAC__StreamDecoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
  147. /// see FLAC__StreamDecoderTellCallback
  148. virtual ::FLAC__StreamDecoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
  149. /// see FLAC__StreamDecoderLengthCallback
  150. virtual ::FLAC__StreamDecoderLengthStatus length_callback(FLAC__uint64 *stream_length);
  151. /// see FLAC__StreamDecoderEofCallback
  152. virtual bool eof_callback();
  153. /// see FLAC__StreamDecoderWriteCallback
  154. virtual ::FLAC__StreamDecoderWriteStatus write_callback(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[]) = 0;
  155. /// see FLAC__StreamDecoderMetadataCallback
  156. virtual void metadata_callback(const ::FLAC__StreamMetadata *metadata);
  157. /// see FLAC__StreamDecoderErrorCallback
  158. virtual void error_callback(::FLAC__StreamDecoderErrorStatus status) = 0;
  159. #if (defined _MSC_VER) || (defined __BORLANDC__) || (defined __GNUG__ && (__GNUG__ < 2 || (__GNUG__ == 2 && __GNUC_MINOR__ < 96))) || (defined __SUNPRO_CC)
  160. // lame hack: some MSVC/GCC versions can't see a protected decoder_ from nested State::resolved_as_cstring()
  161. friend State;
  162. #endif
  163. ::FLAC__StreamDecoder *decoder_;
  164. static ::FLAC__StreamDecoderReadStatus read_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__byte buffer[], size_t *bytes, void *client_data);
  165. static ::FLAC__StreamDecoderSeekStatus seek_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 absolute_byte_offset, void *client_data);
  166. static ::FLAC__StreamDecoderTellStatus tell_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *absolute_byte_offset, void *client_data);
  167. static ::FLAC__StreamDecoderLengthStatus length_callback_(const ::FLAC__StreamDecoder *decoder, FLAC__uint64 *stream_length, void *client_data);
  168. static FLAC__bool eof_callback_(const ::FLAC__StreamDecoder *decoder, void *client_data);
  169. static ::FLAC__StreamDecoderWriteStatus write_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data);
  170. static void metadata_callback_(const ::FLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data);
  171. static void error_callback_(const ::FLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data);
  172. private:
  173. // Private and undefined so you can't use them:
  174. Stream(const Stream &);
  175. void operator=(const Stream &);
  176. };
  177. /** \ingroup flacpp_decoder
  178. * \brief
  179. * This class wraps the ::FLAC__StreamDecoder. If you are
  180. * not decoding from a file, you may need to use
  181. * FLAC::Decoder::Stream.
  182. *
  183. * The usage of this class is similar to FLAC__StreamDecoder,
  184. * except instead of providing callbacks to
  185. * FLAC__stream_decoder_init*_FILE() or
  186. * FLAC__stream_decoder_init*_file(), you will inherit from this
  187. * class and override the virtual callback functions with your
  188. * own implementations, then call init() or init_off(). The rest
  189. * of the calls work the same as in the C layer.
  190. *
  191. * Only the write, and error callbacks from FLAC::Decoder::Stream
  192. * are mandatory. The others are optional; this class provides
  193. * full working implementations for all other callbacks and
  194. * supports seeking.
  195. */
  196. class FLACPP_API File: public Stream {
  197. public:
  198. File();
  199. virtual ~File();
  200. virtual ::FLAC__StreamDecoderInitStatus init(FILE *file); ///< See FLAC__stream_decoder_init_FILE()
  201. virtual ::FLAC__StreamDecoderInitStatus init(const char *filename); ///< See FLAC__stream_decoder_init_file()
  202. virtual ::FLAC__StreamDecoderInitStatus init(const std::string &filename); ///< See FLAC__stream_decoder_init_file()
  203. virtual ::FLAC__StreamDecoderInitStatus init_ogg(FILE *file); ///< See FLAC__stream_decoder_init_ogg_FILE()
  204. virtual ::FLAC__StreamDecoderInitStatus init_ogg(const char *filename); ///< See FLAC__stream_decoder_init_ogg_file()
  205. virtual ::FLAC__StreamDecoderInitStatus init_ogg(const std::string &filename); ///< See FLAC__stream_decoder_init_ogg_file()
  206. protected:
  207. // this is a dummy implementation to satisfy the pure virtual in Stream that is actually supplied internally by the C layer
  208. virtual ::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], size_t *bytes);
  209. private:
  210. // Private and undefined so you can't use them:
  211. File(const File &);
  212. void operator=(const File &);
  213. };
  214. }
  215. }
  216. #endif