Merge branch 'refs/heads/t/rm_as_compat'
[paraslash.git] / ogg_afh_common.c
1 /*
2  * Copyright (C) 2004 Andre Noll <maan@tuebingen.mpg.de>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file ogg_afh_common.c Functions common to all ogg/ codecs. */
8
9 #include <ogg/ogg.h>
10 #include <regex.h>
11
12 #include "para.h"
13 #include "afh.h"
14 #include "error.h"
15 #include "string.h"
16 #include "ogg_afh_common.h"
17 #include "fd.h"
18
19 /* Taken from decoder_example.c of libvorbis-1.2.3. */
20 static int process_packets_2_and_3(ogg_sync_state *oss,
21                 ogg_stream_state *stream, struct afh_info *afhi,
22                 struct ogg_afh_callback_info *ci)
23 {
24         ogg_page page;
25         ogg_packet packet;
26         int i = 0;
27
28         while (i < 2) {
29                 while (i < 2) {
30                         int ret = ogg_sync_pageout(oss, &page);
31                         if (ret == 0)
32                                 break; /* Need more data */
33                         if (ret != 1)
34                                 continue;
35                         /*
36                          * We can ignore any errors here as they'll also become
37                          * apparent at packetout.
38                          */
39                         ogg_stream_pagein(stream, &page);
40                         PARA_INFO_LOG("ogg page serial: %d\n",
41                                 ogg_page_serialno(&page));
42                         while (i < 2) {
43                                 ret = ogg_stream_packetout(stream, &packet);
44                                 if (ret == 0)
45                                         break;
46                                 if (ret < 0)
47                                         return -E_STREAM_PACKETOUT;
48                                 ret = ci->packet_callback(&packet, i + 1,
49                                         ogg_page_serialno(&page), afhi,
50                                         ci->private_data);
51                                 if (ret < 0)
52                                         return ret;
53                                 if (ret == 0) /* header complete */
54                                         return 1;
55                                 i++;
56                         }
57                 }
58         }
59         return 1;
60 }
61
62 static int process_ogg_packets(ogg_sync_state *oss, struct afh_info *afhi,
63                 struct ogg_afh_callback_info *ci)
64 {
65         ogg_packet packet;
66         ogg_stream_state stream;
67         ogg_page page;
68         int ret;
69
70         if (ogg_sync_pageout(oss, &page) != 1)
71                 return -E_SYNC_PAGEOUT;
72
73         ret = ogg_page_serialno(&page);
74         ogg_stream_init(&stream, ret);
75
76         ret = -E_STREAM_PAGEIN;
77         if (ogg_stream_pagein(&stream, &page) < 0)
78                 goto out;
79
80         ret = -E_STREAM_PACKETOUT;
81         if (ogg_stream_packetout(&stream, &packet) != 1)
82                 goto out;
83         ret = ci->packet_callback(&packet, 0, ogg_page_serialno(&page),
84                 afhi, ci->private_data);
85         if (ret < 0)
86                 goto out;
87         ret = process_packets_2_and_3(oss, &stream, afhi, ci);
88         if (ret < 0)
89                 goto out;
90         ret = 1;
91 out:
92         ogg_stream_clear(&stream);
93         return ret;
94 }
95
96 static void set_chunk_tv(int frames_per_chunk, int frequency,
97                 struct timeval *result)
98 {
99         uint64_t x = (uint64_t)frames_per_chunk * 1000 * 1000 / frequency;
100
101         result->tv_sec = x / 1000 / 1000;
102         result->tv_usec = x % (1000 * 1000);
103         PARA_INFO_LOG("%d frames per chunk, chunk time: %lums\n",
104                 frames_per_chunk, tv2ms(result));
105 }
106
107 /**
108  * Pass first three ogg packets to callback and build the chunk table.
109  *
110  * This function extracts the first three ogg packets of the audio data
111  * given by \a map and \a numbytes and passes each packet to the callback
112  * defined by \a ci.
113  *
114  * If the packet callback indicates success and \a afhi is not \p NULL, the
115  * chunk table is built. Chunk zero contains the first three ogg packets while
116  * all other chunks consist of exactly one ogg page.
117  *
118  * \param map Audio file data.
119  * \param numbytes The length of \a map.
120  * \param afhi Passed to the packet callback, contains chunk table.
121  * \param ci The callback structure.
122  *
123  * \return Standard.
124  */
125 int ogg_get_file_info(char *map, size_t numbytes, struct afh_info *afhi,
126                 struct ogg_afh_callback_info *ci)
127 {
128         ogg_sync_state oss;
129         ogg_page op;
130         char *buf;
131         int ret, i, j, frames_per_chunk, ct_size;
132         long long unsigned num_frames = 0;
133
134         ogg_sync_init(&oss);
135         ret = -E_OGG_SYNC;
136         buf = ogg_sync_buffer(&oss, numbytes);
137         if (!buf)
138                 goto out;
139         memcpy(buf, map, numbytes);
140         ret = -E_OGG_SYNC;
141         if (ogg_sync_wrote(&oss, numbytes) < 0)
142                 goto out;
143         ret = process_ogg_packets(&oss, afhi, ci);
144         if (ret < 0)
145                 goto out;
146         if (!afhi)
147                 goto out;
148         afhi->header_len = oss.returned;
149         oss.returned = 0;
150         oss.fill = numbytes;
151         /* count ogg pages and get duration of the file */
152         for (i = 0; ogg_sync_pageseek(&oss, &op) > 0; i++)
153                 num_frames = ogg_page_granulepos(&op);
154         PARA_INFO_LOG("%d pages, %llu frames\n", i, num_frames);
155         ret = -E_OGG_EMPTY;
156         if (i == 0)
157                 goto out;
158         afhi->seconds_total = num_frames / afhi->frequency;
159         /* use roughly one page per chunk */
160         frames_per_chunk = num_frames / i;
161         PARA_INFO_LOG("%" PRIu32 "seconds, %d frames/chunk\n",
162                 afhi->seconds_total, frames_per_chunk);
163         ct_size = 250;
164         afhi->chunk_table = para_malloc(ct_size * sizeof(uint32_t));
165         afhi->chunk_table[0] = 0;
166         afhi->chunk_table[1] = afhi->header_len;
167         oss.returned = afhi->header_len;
168         oss.fill = numbytes;
169         for (j = 1; ogg_sync_pageseek(&oss, &op) > 0; /* nothing */) {
170                 int granule = ogg_page_granulepos(&op);
171
172                 while (granule >= (j + 1) * frames_per_chunk) {
173                         j++;
174                         if (j >= ct_size) {
175                                 ct_size *= 2;
176                                 afhi->chunk_table = para_realloc(
177                                         afhi->chunk_table,
178                                         ct_size * sizeof(uint32_t));
179                         }
180                         afhi->chunk_table[j] = oss.returned;
181                 }
182         }
183         afhi->chunks_total = j;
184         set_chunk_tv(frames_per_chunk, afhi->frequency, &afhi->chunk_tv);
185         ret = 0;
186 out:
187         ogg_sync_clear(&oss);
188         return ret;
189 }
190
191 static int write_ogg_page(int fd, const ogg_page *op)
192 {
193         int ret;
194
195         PARA_DEBUG_LOG("header/body: %li/%li\n", op->header_len, op->body_len);
196         ret = xwrite(fd, (const char *)op->header, op->header_len);
197         if (ret < 0)
198                 return ret;
199         return xwrite(fd, (const char *)op->body, op->body_len);
200 }
201
202 /**
203  * Change meta tags of ogg files.
204  *
205  * \param map The (read-only) memory map of the input file.
206  * \param map_sz The size of the input file in bytes.
207  * \param fd The output file descriptor.
208  * \param meta_packet Codec-specific packet containing modified tags.
209  * \param meta_sz Size of the metadata packet.
210  *
211  * This function writes a new ogg file content using file descriptor \a fd,
212  * which must correspond to a file which has been opened for writing.  The
213  * second packet is supposed to contain the metadata, and is replaced by \a
214  * meta_packet. This output file has to be closed by the caller.
215  *
216  * \return Standard.
217  */
218 int ogg_rewrite_tags(const char *map, size_t map_sz, int fd,
219                 char *meta_packet, size_t meta_sz)
220 {
221         ogg_sync_state oss_in, oss_out;
222         ogg_stream_state stream_in, stream_out, *si = NULL, *so = NULL;
223         ogg_packet packet;
224         ogg_page op;
225         char *buf;
226         int serial, ret;
227         long len = map_sz;
228
229         ogg_sync_init(&oss_in);
230         ogg_sync_init(&oss_out);
231
232         ret = -E_OGG_SYNC;
233         buf = ogg_sync_buffer(&oss_in, len);
234         if (!buf)
235                 goto out;
236         memcpy(buf, map, len);
237         ret = -E_OGG_SYNC;
238         if (ogg_sync_wrote(&oss_in, len) < 0)
239                 goto out;
240         if (ogg_sync_pageout(&oss_in, &op) != 1)
241                 goto out;
242         ret = ogg_page_serialno(&op);
243         serial = ret;
244
245         si = &stream_in;
246         ogg_stream_init(si, serial);
247         /* Packet #0 goes to an own page */
248         ret = -E_STREAM_PAGEIN;
249         if (ogg_stream_pagein(si, &op) < 0)
250                 goto out;
251         ret = -E_STREAM_PACKETOUT;
252         if (ogg_stream_packetout(si, &packet) != 1)
253                 goto out;
254         ret = -E_STREAM_PACKETIN;
255         so = &stream_out;
256         ogg_stream_init(so, serial);
257         if (ogg_stream_packetin(so, &packet) != 0)
258                 goto out;
259         ret = ogg_stream_flush(so, &op);
260         assert(ret != 0);
261         /* packets have been flushed into the page. */
262         ret = write_ogg_page(fd, &op);
263         if (ret < 0)
264                 goto out;
265         /*
266          * For all supported ogg/xxx audio formats the meta data packet is
267          * packet #1. Write out our modified version of this packet.
268          */
269         packet.packetno = 1;
270         packet.b_o_s = packet.e_o_s = 0;
271         packet.packet = (typeof(packet.packet))meta_packet;
272         packet.bytes = meta_sz;
273         ret = -E_STREAM_PACKETIN;
274         if (ogg_stream_packetin(so, &packet) != 0)
275                 goto out;
276         /* Copy ogg packets, ignoring the meta data packet. */
277         for (;;) {
278                 ret = ogg_stream_packetout(si, &packet);
279                 if (ret == -1)
280                         break;
281                 if (ret != 1) {
282                         ret = -E_STREAM_PAGEOUT;
283                         if (ogg_sync_pageout(&oss_in, &op) < 0)
284                                 goto out;
285                         ret = -E_STREAM_PAGEIN;
286                         if (ogg_stream_pagein(si, &op))
287                                 goto out;
288                         continue;
289                 }
290                 PARA_DEBUG_LOG("packet: bytes: %d, granule: %d, packetno: %d\n",
291                         (int)packet.bytes, (int)packet.granulepos,
292                         (int)packet.packetno);
293                 /* ignore meta data packet which we replaced */
294                 if (packet.packetno == 1)
295                         continue;
296                 ret = -E_STREAM_PACKETIN;
297                 if (ogg_stream_packetin(so, &packet) != 0)
298                         goto out;
299                 /* only create a new ogg page if granulepos is valid */
300                 if (packet.granulepos == -1)
301                         continue;
302                 /* force remaining packets into a page */
303                 for (;;) {
304 #ifdef HAVE_OGG_STREAM_FLUSH_FILL
305                         ret = ogg_stream_flush_fill(so, &op, INT_MAX);
306 #else
307                         ret = ogg_stream_flush(so, &op);
308 #endif
309                         if (ret <= 0)
310                                 break;
311                         PARA_DEBUG_LOG("writing page (%li bytes)\n",
312                                 op.header_len + op.body_len);
313                         ret = write_ogg_page(fd, &op);
314                         if (ret < 0)
315                                 goto out;
316                 }
317         }
318         if (ogg_stream_flush(so, &op)) {
319                 /* write remaining data */
320                 ret = write_ogg_page(fd, &op);
321                 if (ret < 0)
322                         goto out;
323         }
324         ret = 1;
325 out:
326         ogg_sync_clear(&oss_in);
327         ogg_sync_clear(&oss_out);
328         if (si)
329                 ogg_stream_clear(si);
330         if (so)
331                 ogg_stream_clear(so);
332         return ret;
333 }