make sure closing the application aborts the remaining HttpGet objects. Should fix...
[Rockbox.git] / apps / metadata / ogg.c
bloba109694e9d75187fd40a6e4ad22c29f83b089e63
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Dave Chapman
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
19 #include <stdio.h>
20 #include <string.h>
21 #include <stdlib.h>
22 #include <ctype.h>
23 #include <inttypes.h>
25 #include "system.h"
26 #include "id3.h"
27 #include "metadata_common.h"
28 #include "logf.h"
30 /* A simple parser to read vital metadata from an Ogg Speex file. Returns
31 * false if metadata needed by the Speex codec couldn't be read.
34 bool get_speex_metadata(int fd, struct mp3entry* id3)
36 /* An Ogg File is split into pages, each starting with the string
37 * "OggS". Each page has a timestamp (in PCM samples) referred to as
38 * the "granule position".
40 * An Ogg Speex has the following structure:
41 * 1) Identification header (containing samplerate, numchannels, etc)
42 Described in this page: (http://www.speex.org/manual2/node7.html)
43 * 2) Comment header - containing the Vorbis Comments
44 * 3) Many audio packets...
47 /* Use the path name of the id3 structure as a temporary buffer. */
48 unsigned char* buf = (unsigned char*)id3->path;
49 long comment_size;
50 long remaining = 0;
51 long last_serial = 0;
52 long serial, r;
53 int segments;
54 int i;
55 bool eof = false;
57 if ((lseek(fd, 0, SEEK_SET) < 0) || (read(fd, buf, 58) < 33))
59 return false;
62 if ((memcmp(buf, "OggS", 4) != 0) || (memcmp(&buf[28], "Speex", 5) != 0))
64 return false;
67 /* We need to ensure the serial number from this page is the same as the
68 * one from the last page (since we only support a single bitstream).
70 serial = get_long_le(&buf[14]);
71 if ((lseek(fd, 33, SEEK_SET) < 0)||(read(fd, buf, 58) < 4))
73 return false;
76 id3->frequency = get_slong(&buf[31]);
77 last_serial = get_long_le(&buf[27]);/*temporary, header size*/
78 id3->bitrate = get_long_le(&buf[47]);
79 id3->vbr = get_long_le(&buf[55]);
80 id3->filesize = filesize(fd);
81 /* Comments are in second Ogg page */
82 if (lseek(fd, 28+last_serial/*(temporary for header size)*/, SEEK_SET) < 0)
84 return false;
87 /* Minimum header length for Ogg pages is 27. */
88 if (read(fd, buf, 27) < 27)
90 return false;
93 if (memcmp(buf, "OggS", 4) !=0 )
95 return false;
98 segments = buf[26];
99 /* read in segment table */
100 if (read(fd, buf, segments) < segments)
102 return false;
105 /* The second packet in a vorbis stream is the comment packet. It *may*
106 * extend beyond the second page, but usually does not. Here we find the
107 * length of the comment packet (or the rest of the page if the comment
108 * packet extends to the third page).
110 for (i = 0; i < segments; i++)
112 remaining += buf[i];
113 /* The last segment of a packet is always < 255 bytes */
114 if (buf[i] < 255)
116 break;
120 comment_size = remaining;
122 /* Failure to read the tags isn't fatal. */
123 read_vorbis_tags(fd, id3, remaining);
125 /* We now need to search for the last page in the file - identified by
126 * by ('O','g','g','S',0) and retrieve totalsamples.
129 /* A page is always < 64 kB */
130 if (lseek(fd, -(MIN(64 * 1024, id3->filesize)), SEEK_END) < 0)
132 return false;
135 remaining = 0;
137 while (!eof)
139 r = read(fd, &buf[remaining], MAX_PATH - remaining);
141 if (r <= 0)
143 eof = true;
145 else
147 remaining += r;
150 /* Inefficient (but simple) search */
151 i = 0;
153 while (i < (remaining - 3))
155 if ((buf[i] == 'O') && (memcmp(&buf[i], "OggS", 4) == 0))
157 if (i < (remaining - 17))
159 /* Note that this only reads the low 32 bits of a
160 * 64 bit value.
162 id3->samples = get_long_le(&buf[i + 6]);
163 last_serial = get_long_le(&buf[i + 14]);
165 /* If this page is very small the beginning of the next
166 * header could be in buffer. Jump near end of this header
167 * and continue */
168 i += 27;
170 else
172 break;
175 else
177 i++;
181 if (i < remaining)
183 /* Move the remaining bytes to start of buffer.
184 * Reuse var 'segments' as it is no longer needed */
185 segments = 0;
186 while (i < remaining)
188 buf[segments++] = buf[i++];
190 remaining = segments;
192 else
194 /* Discard the rest of the buffer */
195 remaining = 0;
199 /* This file has mutiple vorbis bitstreams (or is corrupt). */
200 /* FIXME we should display an error here. */
201 if (serial != last_serial)
203 logf("serialno mismatch");
204 logf("%ld", serial);
205 logf("%ld", last_serial);
206 return false;
209 id3->length = (id3->samples / id3->frequency) * 1000;
210 id3->bitrate = (((int64_t) id3->filesize - comment_size) * 8) / id3->length;
211 return true;
214 /* A simple parser to read vital metadata from an Ogg Vorbis file.
215 * Calls get_speex_metadata if a speex file is identified. Returns
216 * false if metadata needed by the Vorbis codec couldn't be read.
218 bool get_vorbis_metadata(int fd, struct mp3entry* id3)
220 /* An Ogg File is split into pages, each starting with the string
221 * "OggS". Each page has a timestamp (in PCM samples) referred to as
222 * the "granule position".
224 * An Ogg Vorbis has the following structure:
225 * 1) Identification header (containing samplerate, numchannels, etc)
226 * 2) Comment header - containing the Vorbis Comments
227 * 3) Setup header - containing codec setup information
228 * 4) Many audio packets...
231 /* Use the path name of the id3 structure as a temporary buffer. */
232 unsigned char* buf = (unsigned char *)id3->path;
233 long comment_size;
234 long remaining = 0;
235 long last_serial = 0;
236 long serial, r;
237 int segments;
238 int i;
239 bool eof = false;
241 if ((lseek(fd, 0, SEEK_SET) < 0) || (read(fd, buf, 58) < 4))
243 return false;
246 if ((memcmp(buf, "OggS", 4) != 0) || (memcmp(&buf[29], "vorbis", 6) != 0))
248 if ((memcmp(buf, "OggS", 4) != 0) || (memcmp(&buf[28], "Speex", 5) != 0))
250 return false;
252 else
254 id3->codectype = AFMT_SPEEX;
255 return get_speex_metadata(fd, id3);
259 /* We need to ensure the serial number from this page is the same as the
260 * one from the last page (since we only support a single bitstream).
262 serial = get_long_le(&buf[14]);
263 id3->frequency = get_long_le(&buf[40]);
264 id3->filesize = filesize(fd);
266 /* Comments are in second Ogg page */
267 if (lseek(fd, 58, SEEK_SET) < 0)
269 return false;
272 /* Minimum header length for Ogg pages is 27. */
273 if (read(fd, buf, 27) < 27)
275 return false;
278 if (memcmp(buf, "OggS", 4) !=0 )
280 return false;
283 segments = buf[26];
285 /* read in segment table */
286 if (read(fd, buf, segments) < segments)
288 return false;
291 /* The second packet in a vorbis stream is the comment packet. It *may*
292 * extend beyond the second page, but usually does not. Here we find the
293 * length of the comment packet (or the rest of the page if the comment
294 * packet extends to the third page).
296 for (i = 0; i < segments; i++)
298 remaining += buf[i];
300 /* The last segment of a packet is always < 255 bytes */
301 if (buf[i] < 255)
303 break;
307 /* Now read in packet header (type and id string) */
308 if (read(fd, buf, 7) < 7)
310 return false;
313 comment_size = remaining;
314 remaining -= 7;
316 /* The first byte of a packet is the packet type; comment packets are
317 * type 3.
319 if ((buf[0] != 3) || (memcmp(buf + 1, "vorbis", 6) !=0))
321 return false;
324 /* Failure to read the tags isn't fatal. */
325 read_vorbis_tags(fd, id3, remaining);
327 /* We now need to search for the last page in the file - identified by
328 * by ('O','g','g','S',0) and retrieve totalsamples.
331 /* A page is always < 64 kB */
332 if (lseek(fd, -(MIN(64 * 1024, id3->filesize)), SEEK_END) < 0)
334 return false;
337 remaining = 0;
339 while (!eof)
341 r = read(fd, &buf[remaining], MAX_PATH - remaining);
343 if (r <= 0)
345 eof = true;
347 else
349 remaining += r;
352 /* Inefficient (but simple) search */
353 i = 0;
355 while (i < (remaining - 3))
357 if ((buf[i] == 'O') && (memcmp(&buf[i], "OggS", 4) == 0))
359 if (i < (remaining - 17))
361 /* Note that this only reads the low 32 bits of a
362 * 64 bit value.
364 id3->samples = get_long_le(&buf[i + 6]);
365 last_serial = get_long_le(&buf[i + 14]);
367 /* If this page is very small the beginning of the next
368 * header could be in buffer. Jump near end of this header
369 * and continue */
370 i += 27;
372 else
374 break;
377 else
379 i++;
383 if (i < remaining)
385 /* Move the remaining bytes to start of buffer.
386 * Reuse var 'segments' as it is no longer needed */
387 segments = 0;
388 while (i < remaining)
390 buf[segments++] = buf[i++];
392 remaining = segments;
394 else
396 /* Discard the rest of the buffer */
397 remaining = 0;
401 /* This file has mutiple vorbis bitstreams (or is corrupt). */
402 /* FIXME we should display an error here. */
403 if (serial != last_serial)
405 logf("serialno mismatch");
406 logf("%ld", serial);
407 logf("%ld", last_serial);
408 return false;
411 id3->length = ((int64_t) id3->samples * 1000) / id3->frequency;
413 if (id3->length <= 0)
415 logf("ogg length invalid!");
416 return false;
419 id3->bitrate = (((int64_t) id3->filesize - comment_size) * 8) / id3->length;
420 id3->vbr = true;
422 return true;