Colour targets: Revert an optimisation from almost 18 months ago that actually turned...
[Rockbox.git] / apps / metadata / ogg.c
blobef43cf963d2e6564d13601c23fc951903798b2bc
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2005 Dave Chapman
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
21 #include <stdio.h>
22 #include <string.h>
23 #include <stdlib.h>
24 #include <ctype.h>
25 #include <inttypes.h>
27 #include "system.h"
28 #include "id3.h"
29 #include "metadata_common.h"
30 #include "metadata_parsers.h"
31 #include "logf.h"
33 /* A simple parser to read vital metadata from an Ogg Vorbis file.
34 * Can also handle parsing Ogg Speex files for metadata. Returns
35 * false if metadata needed by the codec couldn't be read.
37 bool get_ogg_metadata(int fd, struct mp3entry* id3)
39 /* An Ogg File is split into pages, each starting with the string
40 * "OggS". Each page has a timestamp (in PCM samples) referred to as
41 * the "granule position".
43 * An Ogg Vorbis has the following structure:
44 * 1) Identification header (containing samplerate, numchannels, etc)
45 * 2) Comment header - containing the Vorbis Comments
46 * 3) Setup header - containing codec setup information
47 * 4) Many audio packets...
49 * An Ogg Speex has the following structure:
50 * 1) Identification header (containing samplerate, numchannels, etc)
51 * Described in this page: (http://www.speex.org/manual2/node7.html)
52 * 2) Comment header - containing the Vorbis Comments
53 * 3) Many audio packets.
56 /* Use the path name of the id3 structure as a temporary buffer. */
57 unsigned char* buf = (unsigned char *)id3->path;
58 long comment_size;
59 long remaining = 0;
60 long last_serial = 0;
61 long serial, r;
62 int segments, header_size;
63 int i;
64 bool eof = false;
66 /* 92 bytes is enough for both Vorbis and Speex headers */
67 if ((lseek(fd, 0, SEEK_SET) < 0) || (read(fd, buf, 92) < 92))
69 return false;
72 /* All Ogg streams start with OggS */
73 if (memcmp(buf, "OggS", 4) != 0)
75 return false;
78 /* Check for format magic and then get metadata */
79 if (memcmp(&buf[29], "vorbis", 6) == 0)
81 id3->codectype = AFMT_OGG_VORBIS;
82 id3->frequency = get_long_le(&buf[40]);
83 id3->vbr = true;
85 /* Comments are in second Ogg page (byte 58 onwards for Vorbis) */
86 if (lseek(fd, 58, SEEK_SET) < 0)
88 return false;
91 else if (memcmp(&buf[28], "Speex ", 8) == 0)
93 id3->codectype = AFMT_SPEEX;
94 id3->frequency = get_slong(&buf[64]);
95 id3->vbr = get_long_le(&buf[88]);
97 header_size = get_long_le(&buf[60]);
99 /* Comments are in second Ogg page (byte 108 onwards for Speex) */
100 if (lseek(fd, 28 + header_size, SEEK_SET) < 0)
102 return false;
105 else
107 return false;
110 id3->filesize = filesize(fd);
112 /* We need to ensure the serial number from this page is the same as the
113 * one from the last page (since we only support a single bitstream).
115 serial = get_long_le(&buf[14]);
117 /* Minimum header length for Ogg pages is 27. */
118 if (read(fd, buf, 27) < 27)
120 return false;
123 if (memcmp(buf, "OggS", 4) !=0 )
125 return false;
128 segments = buf[26];
130 /* read in segment table */
131 if (read(fd, buf, segments) < segments)
133 return false;
136 /* The second packet in a vorbis stream is the comment packet. It *may*
137 * extend beyond the second page, but usually does not. Here we find the
138 * length of the comment packet (or the rest of the page if the comment
139 * packet extends to the third page).
141 for (i = 0; i < segments; i++)
143 remaining += buf[i];
145 /* The last segment of a packet is always < 255 bytes */
146 if (buf[i] < 255)
148 break;
152 comment_size = remaining;
154 if (id3->codectype == AFMT_OGG_VORBIS) {
155 /* Now read in packet header (type and id string) */
156 if (read(fd, buf, 7) < 7)
158 return false;
161 remaining -= 7;
163 /* The first byte of a packet is the packet type; comment packets are
164 * type 3.
166 if (buf[0] != 3)
168 return false;
172 /* Failure to read the tags isn't fatal. */
173 read_vorbis_tags(fd, id3, remaining);
175 /* We now need to search for the last page in the file - identified by
176 * by ('O','g','g','S',0) and retrieve totalsamples.
179 /* A page is always < 64 kB */
180 if (lseek(fd, -(MIN(64 * 1024, id3->filesize)), SEEK_END) < 0)
182 return false;
185 remaining = 0;
187 while (!eof)
189 r = read(fd, &buf[remaining], MAX_PATH - remaining);
191 if (r <= 0)
193 eof = true;
195 else
197 remaining += r;
200 /* Inefficient (but simple) search */
201 i = 0;
203 while (i < (remaining - 3))
205 if ((buf[i] == 'O') && (memcmp(&buf[i], "OggS", 4) == 0))
207 if (i < (remaining - 17))
209 /* Note that this only reads the low 32 bits of a
210 * 64 bit value.
212 id3->samples = get_long_le(&buf[i + 6]);
213 last_serial = get_long_le(&buf[i + 14]);
215 /* If this page is very small the beginning of the next
216 * header could be in buffer. Jump near end of this header
217 * and continue */
218 i += 27;
220 else
222 break;
225 else
227 i++;
231 if (i < remaining)
233 /* Move the remaining bytes to start of buffer.
234 * Reuse var 'segments' as it is no longer needed */
235 segments = 0;
236 while (i < remaining)
238 buf[segments++] = buf[i++];
240 remaining = segments;
242 else
244 /* Discard the rest of the buffer */
245 remaining = 0;
249 /* This file has mutiple vorbis bitstreams (or is corrupt). */
250 /* FIXME we should display an error here. */
251 if (serial != last_serial)
253 logf("serialno mismatch");
254 logf("%ld", serial);
255 logf("%ld", last_serial);
256 return false;
259 id3->length = ((int64_t) id3->samples * 1000) / id3->frequency;
260 if (id3->length <= 0)
262 logf("ogg length invalid!");
263 return false;
266 id3->bitrate = (((int64_t) id3->filesize - comment_size) * 8) / id3->length;
268 return true;