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

Windows CE

开发平台:

C/C++

  1. /* libOggFLAC++ - Free Lossless Audio Codec + Ogg 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 "OggFLAC++/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 OggFLAC {
  38. namespace Decoder {
  39. File::File():
  40. decoder_(::OggFLAC__file_decoder_new())
  41. { }
  42. File::~File()
  43. {
  44. if(0 != decoder_) {
  45. (void) ::OggFLAC__file_decoder_finish(decoder_);
  46. ::OggFLAC__file_decoder_delete(decoder_);
  47. }
  48. }
  49. bool File::is_valid() const
  50. {
  51. return 0 != decoder_;
  52. }
  53. bool File::set_serial_number(long value)
  54. {
  55. FLAC__ASSERT(is_valid());
  56. return (bool)::OggFLAC__file_decoder_set_serial_number(decoder_, value);
  57. }
  58. bool File::set_md5_checking(bool value)
  59. {
  60. FLAC__ASSERT(0 != decoder_);
  61. return (bool)::OggFLAC__file_decoder_set_md5_checking(decoder_, value);
  62. }
  63. bool File::set_filename(const char *value)
  64. {
  65. FLAC__ASSERT(0 != decoder_);
  66. return (bool)::OggFLAC__file_decoder_set_filename(decoder_, value);
  67. }
  68. bool File::set_metadata_respond(::FLAC__MetadataType type)
  69. {
  70. FLAC__ASSERT(0 != decoder_);
  71. return (bool)::OggFLAC__file_decoder_set_metadata_respond(decoder_, type);
  72. }
  73. bool File::set_metadata_respond_application(const FLAC__byte id[4])
  74. {
  75. FLAC__ASSERT(0 != decoder_);
  76. return (bool)::OggFLAC__file_decoder_set_metadata_respond_application(decoder_, id);
  77. }
  78. bool File::set_metadata_respond_all()
  79. {
  80. FLAC__ASSERT(0 != decoder_);
  81. return (bool)::OggFLAC__file_decoder_set_metadata_respond_all(decoder_);
  82. }
  83. bool File::set_metadata_ignore(::FLAC__MetadataType type)
  84. {
  85. FLAC__ASSERT(0 != decoder_);
  86. return (bool)::OggFLAC__file_decoder_set_metadata_ignore(decoder_, type);
  87. }
  88. bool File::set_metadata_ignore_application(const FLAC__byte id[4])
  89. {
  90. FLAC__ASSERT(0 != decoder_);
  91. return (bool)::OggFLAC__file_decoder_set_metadata_ignore_application(decoder_, id);
  92. }
  93. bool File::set_metadata_ignore_all()
  94. {
  95. FLAC__ASSERT(0 != decoder_);
  96. return (bool)::OggFLAC__file_decoder_set_metadata_ignore_all(decoder_);
  97. }
  98. File::State File::get_state() const
  99. {
  100. FLAC__ASSERT(0 != decoder_);
  101. return State(::OggFLAC__file_decoder_get_state(decoder_));
  102. }
  103. OggFLAC::Decoder::SeekableStream::State File::get_seekable_stream_decoder_state() const
  104. {
  105. FLAC__ASSERT(is_valid());
  106. return OggFLAC::Decoder::SeekableStream::State(::OggFLAC__file_decoder_get_seekable_stream_decoder_state(decoder_));
  107. }
  108. OggFLAC::Decoder::Stream::State File::get_stream_decoder_state() const
  109. {
  110. FLAC__ASSERT(is_valid());
  111. return OggFLAC::Decoder::Stream::State(::OggFLAC__file_decoder_get_stream_decoder_state(decoder_));
  112. }
  113. FLAC::Decoder::Stream::State File::get_FLAC_stream_decoder_state() const
  114. {
  115. FLAC__ASSERT(is_valid());
  116. return FLAC::Decoder::Stream::State(::OggFLAC__file_decoder_get_FLAC_stream_decoder_state(decoder_));
  117. }
  118. bool File::get_md5_checking() const
  119. {
  120. FLAC__ASSERT(0 != decoder_);
  121. return (bool)::OggFLAC__file_decoder_get_md5_checking(decoder_);
  122. }
  123. unsigned File::get_channels() const
  124. {
  125. FLAC__ASSERT(is_valid());
  126. return ::OggFLAC__file_decoder_get_channels(decoder_);
  127. }
  128. ::FLAC__ChannelAssignment File::get_channel_assignment() const
  129. {
  130. FLAC__ASSERT(is_valid());
  131. return ::OggFLAC__file_decoder_get_channel_assignment(decoder_);
  132. }
  133. unsigned File::get_bits_per_sample() const
  134. {
  135. FLAC__ASSERT(is_valid());
  136. return ::OggFLAC__file_decoder_get_bits_per_sample(decoder_);
  137. }
  138. unsigned File::get_sample_rate() const
  139. {
  140. FLAC__ASSERT(is_valid());
  141. return ::OggFLAC__file_decoder_get_sample_rate(decoder_);
  142. }
  143. unsigned File::get_blocksize() const
  144. {
  145. FLAC__ASSERT(is_valid());
  146. return ::OggFLAC__file_decoder_get_blocksize(decoder_);
  147. }
  148. File::State File::init()
  149. {
  150. FLAC__ASSERT(0 != decoder_);
  151. ::OggFLAC__file_decoder_set_write_callback(decoder_, write_callback_);
  152. ::OggFLAC__file_decoder_set_metadata_callback(decoder_, metadata_callback_);
  153. ::OggFLAC__file_decoder_set_error_callback(decoder_, error_callback_);
  154. ::OggFLAC__file_decoder_set_client_data(decoder_, (void*)this);
  155. return State(::OggFLAC__file_decoder_init(decoder_));
  156. }
  157. bool File::finish()
  158. {
  159. FLAC__ASSERT(0 != decoder_);
  160. return (bool)::OggFLAC__file_decoder_finish(decoder_);
  161. }
  162. bool File::process_single()
  163. {
  164. FLAC__ASSERT(0 != decoder_);
  165. return (bool)::OggFLAC__file_decoder_process_single(decoder_);
  166. }
  167. bool File::process_until_end_of_metadata()
  168. {
  169. FLAC__ASSERT(0 != decoder_);
  170. return (bool)::OggFLAC__file_decoder_process_until_end_of_metadata(decoder_);
  171. }
  172. bool File::process_until_end_of_file()
  173. {
  174. FLAC__ASSERT(0 != decoder_);
  175. return (bool)::OggFLAC__file_decoder_process_until_end_of_file(decoder_);
  176. }
  177. bool File::seek_absolute(FLAC__uint64 sample)
  178. {
  179. FLAC__ASSERT(0 != decoder_);
  180. return (bool)::OggFLAC__file_decoder_seek_absolute(decoder_, sample);
  181. }
  182. ::FLAC__StreamDecoderWriteStatus File::write_callback_(const ::OggFLAC__FileDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
  183. {
  184. (void) decoder;
  185. FLAC__ASSERT(0 != client_data);
  186. File *instance = reinterpret_cast<File *>(client_data);
  187. FLAC__ASSERT(0 != instance);
  188. return instance->write_callback(frame, buffer);
  189. }
  190. void File::metadata_callback_(const ::OggFLAC__FileDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
  191. {
  192. (void) decoder;
  193. FLAC__ASSERT(0 != client_data);
  194. File *instance = reinterpret_cast<File *>(client_data);
  195. FLAC__ASSERT(0 != instance);
  196. instance->metadata_callback(metadata);
  197. }
  198. void File::error_callback_(const ::OggFLAC__FileDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
  199. {
  200. (void) decoder;
  201. FLAC__ASSERT(0 != client_data);
  202. File *instance = reinterpret_cast<File *>(client_data);
  203. FLAC__ASSERT(0 != instance);
  204. instance->error_callback(status);
  205. }
  206. }
  207. }