stream_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. Stream::Stream():
  40. decoder_(::OggFLAC__stream_decoder_new())
  41. { }
  42. Stream::~Stream()
  43. {
  44. if(0 != decoder_) {
  45. ::OggFLAC__stream_decoder_finish(decoder_);
  46. ::OggFLAC__stream_decoder_delete(decoder_);
  47. }
  48. }
  49. bool Stream::is_valid() const
  50. {
  51. return 0 != decoder_;
  52. }
  53. bool Stream::set_serial_number(long value)
  54. {
  55. FLAC__ASSERT(is_valid());
  56. return (bool)::OggFLAC__stream_decoder_set_serial_number(decoder_, value);
  57. }
  58. bool Stream::set_metadata_respond(::FLAC__MetadataType type)
  59. {
  60. FLAC__ASSERT(is_valid());
  61. return (bool)::OggFLAC__stream_decoder_set_metadata_respond(decoder_, type);
  62. }
  63. bool Stream::set_metadata_respond_application(const FLAC__byte id[4])
  64. {
  65. FLAC__ASSERT(is_valid());
  66. return (bool)::OggFLAC__stream_decoder_set_metadata_respond_application(decoder_, id);
  67. }
  68. bool Stream::set_metadata_respond_all()
  69. {
  70. FLAC__ASSERT(is_valid());
  71. return (bool)::OggFLAC__stream_decoder_set_metadata_respond_all(decoder_);
  72. }
  73. bool Stream::set_metadata_ignore(::FLAC__MetadataType type)
  74. {
  75. FLAC__ASSERT(is_valid());
  76. return (bool)::OggFLAC__stream_decoder_set_metadata_ignore(decoder_, type);
  77. }
  78. bool Stream::set_metadata_ignore_application(const FLAC__byte id[4])
  79. {
  80. FLAC__ASSERT(is_valid());
  81. return (bool)::OggFLAC__stream_decoder_set_metadata_ignore_application(decoder_, id);
  82. }
  83. bool Stream::set_metadata_ignore_all()
  84. {
  85. FLAC__ASSERT(is_valid());
  86. return (bool)::OggFLAC__stream_decoder_set_metadata_ignore_all(decoder_);
  87. }
  88. Stream::State Stream::get_state() const
  89. {
  90. FLAC__ASSERT(is_valid());
  91. return State(::OggFLAC__stream_decoder_get_state(decoder_));
  92. }
  93. FLAC::Decoder::Stream::State Stream::get_FLAC_stream_decoder_state() const
  94. {
  95. FLAC__ASSERT(is_valid());
  96. return FLAC::Decoder::Stream::State(::OggFLAC__stream_decoder_get_FLAC_stream_decoder_state(decoder_));
  97. }
  98. unsigned Stream::get_channels() const
  99. {
  100. FLAC__ASSERT(is_valid());
  101. return ::OggFLAC__stream_decoder_get_channels(decoder_);
  102. }
  103. ::FLAC__ChannelAssignment Stream::get_channel_assignment() const
  104. {
  105. FLAC__ASSERT(is_valid());
  106. return ::OggFLAC__stream_decoder_get_channel_assignment(decoder_);
  107. }
  108. unsigned Stream::get_bits_per_sample() const
  109. {
  110. FLAC__ASSERT(is_valid());
  111. return ::OggFLAC__stream_decoder_get_bits_per_sample(decoder_);
  112. }
  113. unsigned Stream::get_sample_rate() const
  114. {
  115. FLAC__ASSERT(is_valid());
  116. return ::OggFLAC__stream_decoder_get_sample_rate(decoder_);
  117. }
  118. unsigned Stream::get_blocksize() const
  119. {
  120. FLAC__ASSERT(is_valid());
  121. return ::OggFLAC__stream_decoder_get_blocksize(decoder_);
  122. }
  123. Stream::State Stream::init()
  124. {
  125. FLAC__ASSERT(is_valid());
  126. ::OggFLAC__stream_decoder_set_read_callback(decoder_, read_callback_);
  127. ::OggFLAC__stream_decoder_set_write_callback(decoder_, write_callback_);
  128. ::OggFLAC__stream_decoder_set_metadata_callback(decoder_, metadata_callback_);
  129. ::OggFLAC__stream_decoder_set_error_callback(decoder_, error_callback_);
  130. ::OggFLAC__stream_decoder_set_client_data(decoder_, (void*)this);
  131. return State(::OggFLAC__stream_decoder_init(decoder_));
  132. }
  133. void Stream::finish()
  134. {
  135. FLAC__ASSERT(is_valid());
  136. ::OggFLAC__stream_decoder_finish(decoder_);
  137. }
  138. bool Stream::flush()
  139. {
  140. FLAC__ASSERT(is_valid());
  141. return (bool)::OggFLAC__stream_decoder_flush(decoder_);
  142. }
  143. bool Stream::reset()
  144. {
  145. FLAC__ASSERT(is_valid());
  146. return (bool)::OggFLAC__stream_decoder_reset(decoder_);
  147. }
  148. bool Stream::process_single()
  149. {
  150. FLAC__ASSERT(is_valid());
  151. return (bool)::OggFLAC__stream_decoder_process_single(decoder_);
  152. }
  153. bool Stream::process_until_end_of_metadata()
  154. {
  155. FLAC__ASSERT(is_valid());
  156. return (bool)::OggFLAC__stream_decoder_process_until_end_of_metadata(decoder_);
  157. }
  158. bool Stream::process_until_end_of_stream()
  159. {
  160. FLAC__ASSERT(is_valid());
  161. return (bool)::OggFLAC__stream_decoder_process_until_end_of_stream(decoder_);
  162. }
  163. ::FLAC__StreamDecoderReadStatus Stream::read_callback_(const ::OggFLAC__StreamDecoder *decoder, FLAC__byte buffer[], unsigned *bytes, void *client_data)
  164. {
  165. (void)decoder;
  166. FLAC__ASSERT(0 != client_data);
  167. Stream *instance = reinterpret_cast<Stream *>(client_data);
  168. FLAC__ASSERT(0 != instance);
  169. return instance->read_callback(buffer, bytes);
  170. }
  171. ::FLAC__StreamDecoderWriteStatus Stream::write_callback_(const ::OggFLAC__StreamDecoder *decoder, const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[], void *client_data)
  172. {
  173. (void)decoder;
  174. FLAC__ASSERT(0 != client_data);
  175. Stream *instance = reinterpret_cast<Stream *>(client_data);
  176. FLAC__ASSERT(0 != instance);
  177. return instance->write_callback(frame, buffer);
  178. }
  179. void Stream::metadata_callback_(const ::OggFLAC__StreamDecoder *decoder, const ::FLAC__StreamMetadata *metadata, void *client_data)
  180. {
  181. (void)decoder;
  182. FLAC__ASSERT(0 != client_data);
  183. Stream *instance = reinterpret_cast<Stream *>(client_data);
  184. FLAC__ASSERT(0 != instance);
  185. instance->metadata_callback(metadata);
  186. }
  187. void Stream::error_callback_(const ::OggFLAC__StreamDecoder *decoder, ::FLAC__StreamDecoderErrorStatus status, void *client_data)
  188. {
  189. (void)decoder;
  190. FLAC__ASSERT(0 != client_data);
  191. Stream *instance = reinterpret_cast<Stream *>(client_data);
  192. FLAC__ASSERT(0 != instance);
  193. instance->error_callback(status);
  194. }
  195. }
  196. }