blob: f67fb40ee119dbfe71d7bd75b322ad0e65ab3bcc [file] [log] [blame]
Josh Coalson8da98c82006-10-15 04:24:05 +00001/* libFLAC - Free Lossless Audio Codec
Josh Coalsondea0f5a2009-01-07 07:31:28 +00002 * Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009 Josh Coalson
Josh Coalsona1a02002003-09-24 04:31:20 +00003 *
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
Josh Coalsonb1ec7962006-05-24 04:41:36 +000032#if HAVE_CONFIG_H
33# include <config.h>
34#endif
35
Josh Coalsona1a02002003-09-24 04:31:20 +000036#include <string.h> /* for memcpy() */
37#include "FLAC/assert.h"
38#include "private/ogg_decoder_aspect.h"
Josh Coalson4598b1c2004-09-03 01:03:23 +000039#include "private/ogg_mapping.h"
Cristian Rodríguezf0296252012-04-05 19:39:37 -030040#include "private/macros.h"
Josh Coalsona1a02002003-09-24 04:31:20 +000041
Josh Coalsona1a02002003-09-24 04:31:20 +000042
43/***********************************************************************
44 *
45 * Public class methods
46 *
47 ***********************************************************************/
48
Josh Coalson8da98c82006-10-15 04:24:05 +000049FLAC__bool FLAC__ogg_decoder_aspect_init(FLAC__OggDecoderAspect *aspect)
Josh Coalsona1a02002003-09-24 04:31:20 +000050{
Josh Coalsona1a02002003-09-24 04:31:20 +000051 /* we will determine the serial number later if necessary */
52 if(ogg_stream_init(&aspect->stream_state, aspect->serial_number) != 0)
53 return false;
54
55 if(ogg_sync_init(&aspect->sync_state) != 0)
56 return false;
57
Josh Coalson4598b1c2004-09-03 01:03:23 +000058 aspect->version_major = ~(0u);
59 aspect->version_minor = ~(0u);
60
Josh Coalson9b07b612003-12-30 03:31:52 +000061 aspect->need_serial_number = aspect->use_first_serial_number;
62
63 aspect->end_of_stream = false;
64 aspect->have_working_page = false;
65
Josh Coalsona1a02002003-09-24 04:31:20 +000066 return true;
67}
68
Josh Coalson8da98c82006-10-15 04:24:05 +000069void FLAC__ogg_decoder_aspect_finish(FLAC__OggDecoderAspect *aspect)
Josh Coalsona1a02002003-09-24 04:31:20 +000070{
71 (void)ogg_sync_clear(&aspect->sync_state);
72 (void)ogg_stream_clear(&aspect->stream_state);
73}
74
Josh Coalson8da98c82006-10-15 04:24:05 +000075void FLAC__ogg_decoder_aspect_set_serial_number(FLAC__OggDecoderAspect *aspect, long value)
Josh Coalsona1a02002003-09-24 04:31:20 +000076{
77 aspect->use_first_serial_number = false;
78 aspect->serial_number = value;
79}
80
Josh Coalson8da98c82006-10-15 04:24:05 +000081void FLAC__ogg_decoder_aspect_set_defaults(FLAC__OggDecoderAspect *aspect)
Josh Coalsona1a02002003-09-24 04:31:20 +000082{
83 aspect->use_first_serial_number = true;
84}
85
Josh Coalson8da98c82006-10-15 04:24:05 +000086void FLAC__ogg_decoder_aspect_flush(FLAC__OggDecoderAspect *aspect)
Josh Coalsona1a02002003-09-24 04:31:20 +000087{
Josh Coalson4e96cdb2003-09-26 01:46:21 +000088 (void)ogg_stream_reset(&aspect->stream_state);
Josh Coalsonefd81fc2003-09-25 04:09:44 +000089 (void)ogg_sync_reset(&aspect->sync_state);
Josh Coalson9b07b612003-12-30 03:31:52 +000090 aspect->end_of_stream = false;
91 aspect->have_working_page = false;
Josh Coalsona1a02002003-09-24 04:31:20 +000092}
93
Josh Coalson8da98c82006-10-15 04:24:05 +000094void FLAC__ogg_decoder_aspect_reset(FLAC__OggDecoderAspect *aspect)
Josh Coalson69cfda72004-09-10 00:38:21 +000095{
Josh Coalson8da98c82006-10-15 04:24:05 +000096 FLAC__ogg_decoder_aspect_flush(aspect);
Josh Coalson69cfda72004-09-10 00:38:21 +000097
98 if(aspect->use_first_serial_number)
99 aspect->need_serial_number = true;
100}
101
Josh Coalson8065a2d2006-10-15 08:32:56 +0000102FLAC__OggDecoderAspectReadStatus FLAC__ogg_decoder_aspect_read_callback_wrapper(FLAC__OggDecoderAspect *aspect, FLAC__byte buffer[], size_t *bytes, FLAC__OggDecoderAspectReadCallbackProxy read_callback, const FLAC__StreamDecoder *decoder, void *client_data)
Josh Coalsona1a02002003-09-24 04:31:20 +0000103{
Josh Coalson8065a2d2006-10-15 08:32:56 +0000104 static const size_t OGG_BYTES_CHUNK = 8192;
105 const size_t bytes_requested = *bytes;
Josh Coalsona1a02002003-09-24 04:31:20 +0000106
107 /*
Josh Coalson9b07b612003-12-30 03:31:52 +0000108 * The FLAC decoding API uses pull-based reads, whereas Ogg decoding
109 * is push-based. In libFLAC, when you ask to decode a frame, the
110 * decoder will eventually call the read callback to supply some data,
111 * but how much it asks for depends on how much free space it has in
112 * its internal buffer. It does not try to grow its internal buffer
113 * to accomodate a whole frame because then the internal buffer size
114 * could not be limited, which is necessary in embedded applications.
115 *
116 * Ogg however grows its internal buffer until a whole page is present;
117 * only then can you get decoded data out. So we can't just ask for
118 * the same number of bytes from Ogg, then pass what's decoded down to
119 * libFLAC. If what libFLAC is asking for will not contain a whole
120 * page, then we will get no data from ogg_sync_pageout(), and at the
121 * same time cannot just read more data from the client for the purpose
122 * of getting a whole decoded page because the decoded size might be
123 * larger than libFLAC's internal buffer.
124 *
125 * Instead, whenever this read callback wrapper is called, we will
126 * continually request data from the client until we have at least one
127 * page, and manage pages internally so that we can send pieces of
128 * pages down to libFLAC in such a way that we obey its size
129 * requirement. To limit the amount of callbacks, we will always try
130 * to read in enough pages to return the full number of bytes
131 * requested.
Josh Coalsona1a02002003-09-24 04:31:20 +0000132 */
Josh Coalson9b07b612003-12-30 03:31:52 +0000133 *bytes = 0;
134 while (*bytes < bytes_requested && !aspect->end_of_stream) {
135 if (aspect->have_working_page) {
136 if (aspect->have_working_packet) {
Josh Coalson8065a2d2006-10-15 08:32:56 +0000137 size_t n = bytes_requested - *bytes;
138 if ((size_t)aspect->working_packet.bytes <= n) {
Josh Coalson9b07b612003-12-30 03:31:52 +0000139 /* the rest of the packet will fit in the buffer */
140 n = aspect->working_packet.bytes;
141 memcpy(buffer, aspect->working_packet.packet, n);
142 *bytes += n;
143 buffer += n;
144 aspect->have_working_packet = false;
145 }
146 else {
147 /* only n bytes of the packet will fit in the buffer */
148 memcpy(buffer, aspect->working_packet.packet, n);
149 *bytes += n;
150 buffer += n;
151 aspect->working_packet.packet += n;
152 aspect->working_packet.bytes -= n;
153 }
154 }
155 else {
156 /* try and get another packet */
157 const int ret = ogg_stream_packetout(&aspect->stream_state, &aspect->working_packet);
158 if (ret > 0) {
159 aspect->have_working_packet = true;
Josh Coalson69cfda72004-09-10 00:38:21 +0000160 /* if it is the first header packet, check for magic and a supported Ogg FLAC mapping version */
Josh Coalson8da98c82006-10-15 04:24:05 +0000161 if (aspect->working_packet.bytes > 0 && aspect->working_packet.packet[0] == FLAC__OGG_MAPPING_FIRST_HEADER_PACKET_TYPE) {
Josh Coalson69cfda72004-09-10 00:38:21 +0000162 const FLAC__byte *b = aspect->working_packet.packet;
163 const unsigned header_length =
Josh Coalson8da98c82006-10-15 04:24:05 +0000164 FLAC__OGG_MAPPING_PACKET_TYPE_LENGTH +
165 FLAC__OGG_MAPPING_MAGIC_LENGTH +
166 FLAC__OGG_MAPPING_VERSION_MAJOR_LENGTH +
167 FLAC__OGG_MAPPING_VERSION_MINOR_LENGTH +
168 FLAC__OGG_MAPPING_NUM_HEADERS_LENGTH;
Josh Coalson4598b1c2004-09-03 01:03:23 +0000169 if (aspect->working_packet.bytes < (long)header_length)
Josh Coalson8da98c82006-10-15 04:24:05 +0000170 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_NOT_FLAC;
171 b += FLAC__OGG_MAPPING_PACKET_TYPE_LENGTH;
172 if (memcmp(b, FLAC__OGG_MAPPING_MAGIC, FLAC__OGG_MAPPING_MAGIC_LENGTH))
173 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_NOT_FLAC;
174 b += FLAC__OGG_MAPPING_MAGIC_LENGTH;
Josh Coalson69cfda72004-09-10 00:38:21 +0000175 aspect->version_major = (unsigned)(*b);
Josh Coalson8da98c82006-10-15 04:24:05 +0000176 b += FLAC__OGG_MAPPING_VERSION_MAJOR_LENGTH;
Josh Coalson69cfda72004-09-10 00:38:21 +0000177 aspect->version_minor = (unsigned)(*b);
Josh Coalson4598b1c2004-09-03 01:03:23 +0000178 if (aspect->version_major != 1)
Josh Coalson8da98c82006-10-15 04:24:05 +0000179 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_UNSUPPORTED_MAPPING_VERSION;
Josh Coalson4598b1c2004-09-03 01:03:23 +0000180 aspect->working_packet.packet += header_length;
181 aspect->working_packet.bytes -= header_length;
182 }
Josh Coalson9b07b612003-12-30 03:31:52 +0000183 }
184 else if (ret == 0) {
185 aspect->have_working_page = false;
186 }
187 else { /* ret < 0 */
188 /* lost sync, we'll leave the working page for the next call */
Josh Coalson8da98c82006-10-15 04:24:05 +0000189 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_LOST_SYNC;
Josh Coalson9b07b612003-12-30 03:31:52 +0000190 }
191 }
192 }
193 else {
194 /* try and get another page */
195 const int ret = ogg_sync_pageout(&aspect->sync_state, &aspect->working_page);
196 if (ret > 0) {
197 /* got a page, grab the serial number if necessary */
198 if(aspect->need_serial_number) {
199 aspect->stream_state.serialno = aspect->serial_number = ogg_page_serialno(&aspect->working_page);
200 aspect->need_serial_number = false;
201 }
202 if(ogg_stream_pagein(&aspect->stream_state, &aspect->working_page) == 0) {
203 aspect->have_working_page = true;
204 aspect->have_working_packet = false;
205 }
206 /* else do nothing, could be a page from another stream */
207 }
208 else if (ret == 0) {
209 /* need more data */
Cristian Rodríguezf0296252012-04-05 19:39:37 -0300210 const size_t ogg_bytes_to_read = flac_max(bytes_requested - *bytes, OGG_BYTES_CHUNK);
Josh Coalson9b07b612003-12-30 03:31:52 +0000211 char *oggbuf = ogg_sync_buffer(&aspect->sync_state, ogg_bytes_to_read);
Josh Coalsona1a02002003-09-24 04:31:20 +0000212
Josh Coalson9b07b612003-12-30 03:31:52 +0000213 if(0 == oggbuf) {
Josh Coalson8da98c82006-10-15 04:24:05 +0000214 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_MEMORY_ALLOCATION_ERROR;
Josh Coalson9b07b612003-12-30 03:31:52 +0000215 }
216 else {
Josh Coalson8065a2d2006-10-15 08:32:56 +0000217 size_t ogg_bytes_read = ogg_bytes_to_read;
Josh Coalsona1a02002003-09-24 04:31:20 +0000218
Josh Coalson9b07b612003-12-30 03:31:52 +0000219 switch(read_callback(decoder, (FLAC__byte*)oggbuf, &ogg_bytes_read, client_data)) {
Josh Coalson8da98c82006-10-15 04:24:05 +0000220 case FLAC__OGG_DECODER_ASPECT_READ_STATUS_OK:
Josh Coalson9b07b612003-12-30 03:31:52 +0000221 break;
Josh Coalson8da98c82006-10-15 04:24:05 +0000222 case FLAC__OGG_DECODER_ASPECT_READ_STATUS_END_OF_STREAM:
Josh Coalson9b07b612003-12-30 03:31:52 +0000223 aspect->end_of_stream = true;
224 break;
Josh Coalson8da98c82006-10-15 04:24:05 +0000225 case FLAC__OGG_DECODER_ASPECT_READ_STATUS_ABORT:
226 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_ABORT;
Josh Coalson9b07b612003-12-30 03:31:52 +0000227 default:
228 FLAC__ASSERT(0);
229 }
Josh Coalsona1a02002003-09-24 04:31:20 +0000230
Josh Coalson9b07b612003-12-30 03:31:52 +0000231 if(ogg_sync_wrote(&aspect->sync_state, ogg_bytes_read) < 0) {
232 /* double protection; this will happen if the read callback returns more bytes than the max requested, which would overflow Ogg's internal buffer */
233 FLAC__ASSERT(0);
Josh Coalson8da98c82006-10-15 04:24:05 +0000234 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_ERROR;
Josh Coalson9b07b612003-12-30 03:31:52 +0000235 }
236 }
237 }
238 else { /* ret < 0 */
239 /* lost sync, bail out */
Josh Coalson8da98c82006-10-15 04:24:05 +0000240 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_LOST_SYNC;
Josh Coalson9b07b612003-12-30 03:31:52 +0000241 }
242 }
Josh Coalsona1a02002003-09-24 04:31:20 +0000243 }
244
Josh Coalson9b07b612003-12-30 03:31:52 +0000245 if (aspect->end_of_stream && *bytes == 0) {
Josh Coalson8da98c82006-10-15 04:24:05 +0000246 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_END_OF_STREAM;
Josh Coalsona1a02002003-09-24 04:31:20 +0000247 }
248
Josh Coalson8da98c82006-10-15 04:24:05 +0000249 return FLAC__OGG_DECODER_ASPECT_READ_STATUS_OK;
Josh Coalsona1a02002003-09-24 04:31:20 +0000250}