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

Windows CE

开发平台:

C/C++

  1. /* libFLAC++ - Free Lossless Audio Codec library
  2.  * Copyright (C) 2002,2003,2004,2005  Josh Coalson
  3.  *
  4.  * Redistribution and use in source and binary forms, with or without
  5.  * modification, are permitted provided that the following conditions
  6.  * are met:
  7.  *
  8.  * - Redistributions of source code must retain the above copyright
  9.  * notice, this list of conditions and the following disclaimer.
  10.  *
  11.  * - Redistributions in binary form must reproduce the above copyright
  12.  * notice, this list of conditions and the following disclaimer in the
  13.  * documentation and/or other materials provided with the distribution.
  14.  *
  15.  * - Neither the name of the Xiph.org Foundation nor the names of its
  16.  * contributors may be used to endorse or promote products derived from
  17.  * this software without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  20.  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  21.  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  22.  * A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
  23.  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  24.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  25.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  26.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  27.  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  28.  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  29.  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  */
  31. #include "FLAC++/decoder.h"
  32. #include "FLAC/assert.h"
  33. #ifdef _MSC_VER
  34. // warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
  35. #pragma warning ( disable : 4800 )
  36. #endif
  37. namespace FLAC {
  38. namespace Decoder {
  39. File::File():
  40. decoder_(::FLAC__file_decoder_new())
  41. { }
  42. File::~File()
  43. {
  44. if(0 != decoder_) {
  45. (void) ::FLAC__file_decoder_finish(decoder_);
  46. ::FLAC__file_decoder_delete(decoder_);
  47. }
  48. }
  49. bool File::is_valid() const
  50. {
  51. return 0 != decoder_;
  52. }
  53. bool File::set_md5_checking(bool value)
  54. {
  55. FLAC__ASSERT(0 != decoder_);
  56. return (bool)::FLAC__file_decoder_set_md5_checking(decoder_, value);
  57. }
  58. bool File::set_filename(const char *value)
  59. {
  60. FLAC__ASSERT(0 != decoder_);
  61. return (bool)::FLAC__file_decoder_set_filename(decoder_, value);
  62. }
  63. bool File::set_metadata_respond(::FLAC__MetadataType type)
  64. {
  65. FLAC__ASSERT(0 != decoder_);
  66. return (bool)::FLAC__file_decoder_set_metadata_respond(decoder_, type);
  67. }
  68. bool File::set_metadata_respond_application(const FLAC__byte id[4])
  69. {
  70. FLAC__ASSERT(0 != decoder_);
  71. return (bool)::FLAC__file_decoder_set_metadata_respond_application(decoder_, id);
  72. }
  73. bool File::set_metadata_respond_all()
  74. {
  75. FLAC__ASSERT(0 != decoder_);
  76. return (bool)::FLAC__file_decoder_set_metadata_respond_all(decoder_);
  77. }
  78. bool File::set_metadata_ignore(::FLAC__MetadataType type)
  79. {
  80. FLAC__ASSERT(0 != decoder_);
  81. return (bool)::FLAC__file_decoder_set_metadata_ignore(decoder_, type);
  82. }
  83. bool File::set_metadata_ignore_application(const FLAC__byte id[4])
  84. {
  85. FLAC__ASSERT(0 != decoder_);
  86. return (bool)::FLAC__file_decoder_set_metadata_ignore_application(decoder_, id);
  87. }
  88. bool File::set_metadata_ignore_all()
  89. {
  90. FLAC__ASSERT(0 != decoder_);
  91. return (bool)::FLAC__file_decoder_set_metadata_ignore_all(decoder_);
  92. }
  93. File::State File::get_state() const
  94. {
  95. FLAC__ASSERT(0 != decoder_);
  96. return State(::FLAC__file_decoder_get_state(decoder_));
  97. }
  98. SeekableStream::State File::get_seekable_stream_decoder_state() const
  99. {
  100. FLAC__ASSERT(0 != decoder_);
  101. return SeekableStream::State(::FLAC__file_decoder_get_seekable_stream_decoder_state(decoder_));
  102. }
  103. Stream::State File::get_stream_decoder_state() const
  104. {
  105. FLAC__ASSERT(0 != decoder_);
  106. return Stream::State(::FLAC__file_decoder_get_stream_decoder_state(decoder_));
  107. }
  108. bool File::get_md5_checking() const
  109. {
  110. FLAC__ASSERT(0 != decoder_);
  111. return (bool)::FLAC__file_decoder_get_md5_checking(decoder_);
  112. }
  113. unsigned File::get_channels() const
  114. {
  115. FLAC__ASSERT(is_valid());
  116. return ::FLAC__file_decoder_get_channels(decoder_);
  117. }
  118. ::FLAC__ChannelAssignment File::get_channel_assignment() const
  119. {
  120. FLAC__ASSERT(is_valid());
  121. return ::FLAC__file_decoder_get_channel_assignment(decoder_);
  122. }
  123. unsigned File::get_bits_per_sample() const
  124. {
  125. FLAC__ASSERT(is_valid());
  126. return ::FLAC__file_decoder_get_bits_per_sample(decoder_);
  127. }
  128. unsigned File::get_sample_rate() const
  129. {
  130. FLAC__ASSERT(is_valid());
  131. return ::FLAC__file_decoder_get_sample_rate(decoder_);
  132. }
  133. unsigned File::get_blocksize() const
  134. {
  135. FLAC__ASSERT(is_valid());
  136. return ::FLAC__file_decoder_get_blocksize(decoder_);
  137. }
  138. File::State File::init()
  139. {
  140. FLAC__ASSERT(0 != decoder_);
  141. ::FLAC__file_decoder_set_write_callback(decoder_, write_callback_);
  142. ::FLAC__file_decoder_set_metadata_callback(decoder_, metadata_callback_);
  143. ::FLAC__file_decoder_set_error_callback(decoder_, error_callback_);
  144. ::FLAC__file_decoder_set_client_data(decoder_, (void*)this);
  145. return State(::FLAC__file_decoder_init(decoder_));
  146. }
  147. bool File::finish()
  148. {
  149. FLAC__ASSERT(0 != decoder_);
  150. return (bool)::FLAC__file_decoder_finish(decoder_);
  151. }
  152. bool File::process_single()
  153. {
  154. FLAC__ASSERT(0 != decoder_);
  155. return (bool)::FLAC__file_decoder_process_single(decoder_);
  156. }
  157. bool File::process_until_end_of_metadata()
  158. {
  159. FLAC__ASSERT(0 != decoder_);
  160. return (bool)::FLAC__file_decoder_process_until_end_of_metadata(decoder_);
  161. }
  162. bool File::process_until_end_of_file()
  163. {
  164. FLAC__ASSERT(0 != decoder_);
  165. return (bool)::FLAC__file_decoder_process_until_end_of_file(decoder_);
  166. }
  167. bool File::skip_single_frame()
  168. {
  169. FLAC__ASSERT(is_valid());
  170. return (bool)::FLAC__file_decoder_skip_single_frame(decoder_);
  171. }
  172. bool File::seek_absolute(FLAC__uint64 sample)
  173. {
  174. FLAC__ASSERT(0 != decoder_);
  175. return (bool)::FLAC__file_decoder_seek_absolute(decoder_, sample);
  176. }
  177. ::FLAC__StreamDecoderWriteStatus File::write_callback_(const ::FLAC__FileDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
  178. {
  179. (void) decoder;
  180. FLAC__ASSERT(0 != client_data);
  181. File *instance = reinterpret_cast<File *>(client_data);
  182. FLAC__ASSERT(0 != instance);
  183. return instance->write_callback(frame, buffer);
  184. }
  185. void File::metadata_callback_(const ::FLAC__FileDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
  186. {
  187. (void) decoder;
  188. FLAC__ASSERT(0 != client_data);
  189. File *instance = reinterpret_cast<File *>(client_data);
  190. FLAC__ASSERT(0 != instance);
  191. instance->metadata_callback(metadata);
  192. }
  193. void File::error_callback_(const ::FLAC__FileDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
  194. {
  195. (void) decoder;
  196. FLAC__ASSERT(0 != client_data);
  197. File *instance = reinterpret_cast<File *>(client_data);
  198. FLAC__ASSERT(0 != instance);
  199. instance->error_callback(status);
  200. }
  201. }
  202. }