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

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 memset() */
  32. #include "FLAC/assert.h"
  33. #include "private/ogg_encoder_aspect.h"
  34. #include "private/ogg_mapping.h"
  35. static const FLAC__byte OggFLAC__MAPPING_VERSION_MAJOR = 1;
  36. static const FLAC__byte OggFLAC__MAPPING_VERSION_MINOR = 0;
  37. /***********************************************************************
  38.  *
  39.  * Public class methods
  40.  *
  41.  ***********************************************************************/
  42. FLAC__bool OggFLAC__ogg_encoder_aspect_init(OggFLAC__OggEncoderAspect *aspect)
  43. {
  44. /* we will determine the serial number later if necessary */
  45. if(ogg_stream_init(&aspect->stream_state, aspect->serial_number) != 0)
  46. return false;
  47. aspect->seen_magic = false;
  48. aspect->is_first_packet = true;
  49. aspect->samples_written = 0;
  50. return true;
  51. }
  52. void OggFLAC__ogg_encoder_aspect_finish(OggFLAC__OggEncoderAspect *aspect)
  53. {
  54. (void)ogg_stream_clear(&aspect->stream_state);
  55. /*@@@ what aobut the page? */
  56. }
  57. void OggFLAC__ogg_encoder_aspect_set_serial_number(OggFLAC__OggEncoderAspect *aspect, long value)
  58. {
  59. aspect->serial_number = value;
  60. }
  61. FLAC__bool OggFLAC__ogg_encoder_aspect_set_num_metadata(OggFLAC__OggEncoderAspect *aspect, unsigned value)
  62. {
  63. if(value < (1u << OggFLAC__MAPPING_NUM_HEADERS_LEN)) {
  64. aspect->num_metadata = value;
  65. return true;
  66. }
  67. else
  68. return false;
  69. }
  70. void OggFLAC__ogg_encoder_aspect_set_defaults(OggFLAC__OggEncoderAspect *aspect)
  71. {
  72. aspect->serial_number = 0;
  73. aspect->num_metadata = 0;
  74. }
  75. /*
  76.  * The basic FLAC -> Ogg mapping goes like this:
  77.  *
  78.  * - 'fLaC' magic and STREAMINFO block get combined into the first
  79.  *   packet.  The packet is prefixed with
  80.  *   + the one-byte packet type 0x7F
  81.  *   + 'FLAC' magic
  82.  *   + the 2 byte Ogg FLAC mapping version number
  83.  *   + tne 2 byte big-endian # of header packets
  84.  * - The first packet is flushed to the first page.
  85.  * - Each subsequent metadata block goes into its own packet.
  86.  * - Each metadata packet is flushed to page (this is not required,
  87.  *   the mapping only requires that a flush must occur after all
  88.  *   metadata is written).
  89.  * - Each subsequent FLAC audio frame goes into its own packet.
  90.  *
  91.  * WATCHOUT:
  92.  * This depends on the behavior of FLAC__StreamEncoder that we get a
  93.  * separate write callback for the fLaC magic, and then separate write
  94.  * callbacks for each metadata block and audio frame.
  95.  */
  96. FLAC__StreamEncoderWriteStatus OggFLAC__ogg_encoder_aspect_write_callback_wrapper(OggFLAC__OggEncoderAspect *aspect, const FLAC__uint64 total_samples_estimate, const FLAC__byte buffer[], unsigned bytes, unsigned samples, unsigned current_frame, OggFLAC__OggEncoderAspectWriteCallbackProxy write_callback, void *encoder, void *client_data)
  97. {
  98. /* WATCHOUT:
  99.  * This depends on the behavior of FLAC__StreamEncoder that 'samples'
  100.  * will be 0 for metadata writes.
  101.  */
  102. const FLAC__bool is_metadata = (samples == 0);
  103. /*
  104.  * Treat fLaC magic packet specially.  We will note when we see it, then
  105.  * wait until we get the STREAMINFO and prepend it in that packet
  106.  */
  107. if(aspect->seen_magic) {
  108. ogg_packet packet;
  109. FLAC__byte synthetic_first_packet_body[
  110. OggFLAC__MAPPING_PACKET_TYPE_LENGTH +
  111. OggFLAC__MAPPING_MAGIC_LENGTH +
  112. OggFLAC__MAPPING_VERSION_MAJOR_LENGTH +
  113. OggFLAC__MAPPING_VERSION_MINOR_LENGTH +
  114. OggFLAC__MAPPING_NUM_HEADERS_LENGTH +
  115. FLAC__STREAM_SYNC_LENGTH +
  116. FLAC__STREAM_METADATA_HEADER_LENGTH +
  117. FLAC__STREAM_METADATA_STREAMINFO_LENGTH
  118. ];
  119. memset(&packet, 0, sizeof(packet));
  120. packet.granulepos = aspect->samples_written + samples;
  121. if(aspect->is_first_packet) {
  122. FLAC__byte *b = synthetic_first_packet_body;
  123. if(bytes != FLAC__STREAM_METADATA_HEADER_LENGTH + FLAC__STREAM_METADATA_STREAMINFO_LENGTH) {
  124. /*
  125.  * If we get here, our assumption about the way write callbacks happen
  126.  * explained above is wrong
  127.  */
  128. FLAC__ASSERT(0);
  129. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  130. }
  131. /* add first header packet type */
  132. *b = OggFLAC__MAPPING_FIRST_HEADER_PACKET_TYPE;
  133. b += OggFLAC__MAPPING_PACKET_TYPE_LENGTH;
  134. /* add 'FLAC' mapping magic */
  135. memcpy(b, OggFLAC__MAPPING_MAGIC, OggFLAC__MAPPING_MAGIC_LENGTH);
  136. b += OggFLAC__MAPPING_MAGIC_LENGTH;
  137. /* add Ogg FLAC mapping major version number */
  138. memcpy(b, &OggFLAC__MAPPING_VERSION_MAJOR, OggFLAC__MAPPING_VERSION_MAJOR_LENGTH);
  139. b += OggFLAC__MAPPING_VERSION_MAJOR_LENGTH;
  140. /* add Ogg FLAC mapping minor version number */
  141. memcpy(b, &OggFLAC__MAPPING_VERSION_MINOR, OggFLAC__MAPPING_VERSION_MINOR_LENGTH);
  142. b += OggFLAC__MAPPING_VERSION_MINOR_LENGTH;
  143. /* add number of header packets */
  144. *b = (FLAC__byte)(aspect->num_metadata >> 8);
  145. b++;
  146. *b = (FLAC__byte)(aspect->num_metadata);
  147. b++;
  148. /* add native FLAC 'fLaC' magic */
  149. memcpy(b, FLAC__STREAM_SYNC_STRING, FLAC__STREAM_SYNC_LENGTH);
  150. b += FLAC__STREAM_SYNC_LENGTH;
  151. /* add STREAMINFO */
  152. memcpy(b, buffer, bytes);
  153. FLAC__ASSERT(b + bytes - synthetic_first_packet_body == sizeof(synthetic_first_packet_body));
  154. packet.packet = (unsigned char *)synthetic_first_packet_body;
  155. packet.bytes = sizeof(synthetic_first_packet_body);
  156. packet.b_o_s = 1;
  157. aspect->is_first_packet = false;
  158. }
  159. else {
  160. packet.packet = (unsigned char *)buffer;
  161. packet.bytes = bytes;
  162. }
  163. if(total_samples_estimate > 0 && total_samples_estimate == aspect->samples_written + samples)
  164. packet.e_o_s = 1;
  165. if(ogg_stream_packetin(&aspect->stream_state, &packet) != 0)
  166. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  167. /*@@@ can't figure out a way to pass a useful number for 'samples' to the write_callback, so we'll just pass 0 */
  168. if(is_metadata) {
  169. while(ogg_stream_flush(&aspect->stream_state, &aspect->page) != 0) {
  170. if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
  171. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  172. if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
  173. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  174. }
  175. }
  176. else {
  177. while(ogg_stream_pageout(&aspect->stream_state, &aspect->page) != 0) {
  178. if(write_callback(encoder, aspect->page.header, aspect->page.header_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
  179. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  180. if(write_callback(encoder, aspect->page.body, aspect->page.body_len, 0, current_frame, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
  181. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  182. }
  183. }
  184. }
  185. else if(is_metadata && current_frame == 0 && samples == 0 && bytes == 4 && 0 == memcmp(buffer, FLAC__STREAM_SYNC_STRING, sizeof(FLAC__STREAM_SYNC_STRING))) {
  186. aspect->seen_magic = true;
  187. }
  188. else {
  189. /*
  190.  * If we get here, our assumption about the way write callbacks happen
  191.  * explained above is wrong
  192.  */
  193. FLAC__ASSERT(0);
  194. return FLAC__STREAM_ENCODER_WRITE_STATUS_FATAL_ERROR;
  195. }
  196. aspect->samples_written += samples;
  197. return FLAC__STREAM_ENCODER_WRITE_STATUS_OK;
  198. }