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

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 <string.h> /* for memcpy() */
  32. #include "FLAC/assert.h"
  33. #include "private/ogg_decoder_aspect.h"
  34. #include "private/ogg_mapping.h"
  35. #ifdef max
  36. #undef max
  37. #endif
  38. #define max(x,y) ((x)>(y)?(x):(y))
  39. /***********************************************************************
  40.  *
  41.  * Public class methods
  42.  *
  43.  ***********************************************************************/
  44. FLAC__bool OggFLAC__ogg_decoder_aspect_init(OggFLAC__OggDecoderAspect *aspect)
  45. {
  46. /* we will determine the serial number later if necessary */
  47. if(ogg_stream_init(&aspect->stream_state, aspect->serial_number) != 0)
  48. return false;
  49. if(ogg_sync_init(&aspect->sync_state) != 0)
  50. return false;
  51. aspect->version_major = ~(0u);
  52. aspect->version_minor = ~(0u);
  53. aspect->need_serial_number = aspect->use_first_serial_number;
  54. aspect->end_of_stream = false;
  55. aspect->have_working_page = false;
  56. return true;
  57. }
  58. void OggFLAC__ogg_decoder_aspect_finish(OggFLAC__OggDecoderAspect *aspect)
  59. {
  60. (void)ogg_sync_clear(&aspect->sync_state);
  61. (void)ogg_stream_clear(&aspect->stream_state);
  62. }
  63. void OggFLAC__ogg_decoder_aspect_set_serial_number(OggFLAC__OggDecoderAspect *aspect, long value)
  64. {
  65. aspect->use_first_serial_number = false;
  66. aspect->serial_number = value;
  67. }
  68. void OggFLAC__ogg_decoder_aspect_set_defaults(OggFLAC__OggDecoderAspect *aspect)
  69. {
  70. aspect->use_first_serial_number = true;
  71. }
  72. void OggFLAC__ogg_decoder_aspect_flush(OggFLAC__OggDecoderAspect *aspect)
  73. {
  74. (void)ogg_stream_reset(&aspect->stream_state);
  75. (void)ogg_sync_reset(&aspect->sync_state);
  76. aspect->end_of_stream = false;
  77. aspect->have_working_page = false;
  78. }
  79. void OggFLAC__ogg_decoder_aspect_reset(OggFLAC__OggDecoderAspect *aspect)
  80. {
  81. OggFLAC__ogg_decoder_aspect_flush(aspect);
  82. if(aspect->use_first_serial_number)
  83. aspect->need_serial_number = true;
  84. }
  85. OggFLAC__OggDecoderAspectReadStatus OggFLAC__ogg_decoder_aspect_read_callback_wrapper(OggFLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], unsigned *bytes, OggFLAC__OggDecoderAspectReadCallbackProxy read_callback, void *decoder, void *client_data)
  86. {
  87. static const unsigned OGG_BYTES_CHUNK = 8192;
  88. const unsigned bytes_requested = *bytes;
  89. /*
  90.  * The FLAC decoding API uses pull-based reads, whereas Ogg decoding
  91.  * is push-based.  In libFLAC, when you ask to decode a frame, the
  92.  * decoder will eventually call the read callback to supply some data,
  93.  * but how much it asks for depends on how much free space it has in
  94.  * its internal buffer.  It does not try to grow its internal buffer
  95.  * to accomodate a whole frame because then the internal buffer size
  96.  * could not be limited, which is necessary in embedded applications.
  97.  *
  98.  * Ogg however grows its internal buffer until a whole page is present;
  99.  * only then can you get decoded data out.  So we can't just ask for
  100.  * the same number of bytes from Ogg, then pass what's decoded down to
  101.  * libFLAC.  If what libFLAC is asking for will not contain a whole
  102.  * page, then we will get no data from ogg_sync_pageout(), and at the
  103.  * same time cannot just read more data from the client for the purpose
  104.  * of getting a whole decoded page because the decoded size might be
  105.  * larger than libFLAC's internal buffer.
  106.  *
  107.  * Instead, whenever this read callback wrapper is called, we will
  108.  * continually request data from the client until we have at least one
  109.  * page, and manage pages internally so that we can send pieces of
  110.  * pages down to libFLAC in such a way that we obey its size
  111.  * requirement.  To limit the amount of callbacks, we will always try
  112.  * to read in enough pages to return the full number of bytes
  113.  * requested.
  114.  */
  115. *bytes = 0;
  116. while (*bytes < bytes_requested && !aspect->end_of_stream) {
  117. if (aspect->have_working_page) {
  118. if (aspect->have_working_packet) {
  119. unsigned n = bytes_requested - *bytes;
  120. if ((unsigned)aspect->working_packet.bytes <= n) {
  121. /* the rest of the packet will fit in the buffer */
  122. n = aspect->working_packet.bytes;
  123. memcpy(buffer, aspect->working_packet.packet, n);
  124. *bytes += n;
  125. buffer += n;
  126. aspect->have_working_packet = false;
  127. }
  128. else {
  129. /* only n bytes of the packet will fit in the buffer */
  130. memcpy(buffer, aspect->working_packet.packet, n);
  131. *bytes += n;
  132. buffer += n;
  133. aspect->working_packet.packet += n;
  134. aspect->working_packet.bytes -= n;
  135. }
  136. }
  137. else {
  138. /* try and get another packet */
  139. const int ret = ogg_stream_packetout(&aspect->stream_state, &aspect->working_packet);
  140. if (ret > 0) {
  141. aspect->have_working_packet = true;
  142. /* if it is the first header packet, check for magic and a supported Ogg FLAC mapping version */
  143. if (aspect->working_packet.bytes > 0 && aspect->working_packet.packet[0] == OggFLAC__MAPPING_FIRST_HEADER_PACKET_TYPE) {
  144. const FLAC__byte *b = aspect->working_packet.packet;
  145. const unsigned header_length =
  146. OggFLAC__MAPPING_PACKET_TYPE_LENGTH +
  147. OggFLAC__MAPPING_MAGIC_LENGTH +
  148. OggFLAC__MAPPING_VERSION_MAJOR_LENGTH +
  149. OggFLAC__MAPPING_VERSION_MINOR_LENGTH +
  150. OggFLAC__MAPPING_NUM_HEADERS_LENGTH;
  151. if (aspect->working_packet.bytes < (long)header_length)
  152. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_NOT_FLAC;
  153. b += OggFLAC__MAPPING_PACKET_TYPE_LENGTH;
  154. if (memcmp(b, OggFLAC__MAPPING_MAGIC, OggFLAC__MAPPING_MAGIC_LENGTH))
  155. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_NOT_FLAC;
  156. b += OggFLAC__MAPPING_MAGIC_LENGTH;
  157. aspect->version_major = (unsigned)(*b);
  158. b += OggFLAC__MAPPING_VERSION_MAJOR_LENGTH;
  159. aspect->version_minor = (unsigned)(*b);
  160. if (aspect->version_major != 1)
  161. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_UNSUPPORTED_MAPPING_VERSION;
  162. aspect->working_packet.packet += header_length;
  163. aspect->working_packet.bytes -= header_length;
  164. }
  165. }
  166. else if (ret == 0) {
  167. aspect->have_working_page = false;
  168. }
  169. else { /* ret < 0 */
  170. /* lost sync, we'll leave the working page for the next call */
  171. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_LOST_SYNC;
  172. }
  173. }
  174. }
  175. else {
  176. /* try and get another page */
  177. const int ret = ogg_sync_pageout(&aspect->sync_state, &aspect->working_page);
  178. if (ret > 0) {
  179. /* got a page, grab the serial number if necessary */
  180. if(aspect->need_serial_number) {
  181. aspect->stream_state.serialno = aspect->serial_number = ogg_page_serialno(&aspect->working_page);
  182. aspect->need_serial_number = false;
  183. }
  184. if(ogg_stream_pagein(&aspect->stream_state, &aspect->working_page) == 0) {
  185. aspect->have_working_page = true;
  186. aspect->have_working_packet = false;
  187. }
  188. /* else do nothing, could be a page from another stream */
  189. }
  190. else if (ret == 0) {
  191. /* need more data */
  192. const unsigned ogg_bytes_to_read = max(bytes_requested - *bytes, OGG_BYTES_CHUNK);
  193. char *oggbuf = ogg_sync_buffer(&aspect->sync_state, ogg_bytes_to_read);
  194. if(0 == oggbuf) {
  195. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_MEMORY_ALLOCATION_ERROR;
  196. }
  197. else {
  198. unsigned ogg_bytes_read = ogg_bytes_to_read;
  199. switch(read_callback(decoder, (FLAC__byte*)oggbuf, &ogg_bytes_read, client_data)) {
  200. case OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_OK:
  201. break;
  202. case OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_END_OF_STREAM:
  203. aspect->end_of_stream = true;
  204. break;
  205. case OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_ABORT:
  206. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_ABORT;
  207. default:
  208. FLAC__ASSERT(0);
  209. }
  210. if(ogg_sync_wrote(&aspect->sync_state, ogg_bytes_read) < 0) {
  211. /* double protection; this will happen if the read callback returns more bytes than the max requested, which would overflow Ogg's internal buffer */
  212. FLAC__ASSERT(0);
  213. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_ERROR;
  214. }
  215. }
  216. }
  217. else { /* ret < 0 */
  218. /* lost sync, bail out */
  219. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_LOST_SYNC;
  220. }
  221. }
  222. }
  223. if (aspect->end_of_stream && *bytes == 0) {
  224. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_END_OF_STREAM;
  225. }
  226. return OggFLAC__OGG_DECODER_ASPECT_READ_STATUS_OK;
  227. }