1c0c63234e0837457fc3e8e79138c11367884494
2 * Copyright (C) 2004-2007 Andre Noll <maan@systemlinux.org>
4 * Licensed under the GPL v2. For licencing details see COPYING.
6 /** \file ogg_afh.c para_server's ogg vorbis audio format handler */
10 #include <vorbis/codec.h>
11 #include <vorbis/vorbisfile.h>
19 /** must be big enough to hold header */
20 #define CHUNK_SIZE 32768
21 static double chunk_time
= 0.25;
23 /** describes a memory-mapped ogg vorbis file */
24 struct ogg_datasource
{
25 /** the memory mapping */
27 /** this size of the mapping */
29 /** the current position in the mapping */
33 static size_t cb_read(void *buf
, size_t size
, size_t nmemb
, void *datasource
)
35 struct ogg_datasource
*ods
= datasource
;
36 size_t copy
= PARA_MIN(ods
->numbytes
- ods
->fpos
, size
* nmemb
),
40 memcpy(buf
, ods
->map
+ ods
->fpos
, copy
);
41 // PARA_INFO_LOG("size: %zd, nmemb: %zd, ret: %zd\n", size, nmemb, ret);
42 ods
->fpos
+= ret
* size
;
46 static int cb_seek(void *datasource
, ogg_int64_t offset
,
49 struct ogg_datasource
*ods
= datasource
;
52 if (offset
>= 0 && offset
<= ods
->numbytes
) {
60 if (offset
<= 0 && -offset
<= ods
->numbytes
) {
61 ods
->fpos
= ods
->numbytes
+ offset
;
68 if ((offset
>= 0 && offset
+ ods
->fpos
> ods
->numbytes
) ||
69 (offset
< 0 && offset
+ ods
->fpos
< 0)) {
80 /* don't do anything as vss still needs the open filehandle */
81 static int cb_close(__a_unused
void *datasource
)
86 static long cb_tell(void *datasource
)
88 struct ogg_datasource
*ods
= datasource
;
89 return (unsigned long)ods
->fpos
;
92 static int ogg_open_callbacks(void *datasource
, OggVorbis_File
*vf
, ov_callbacks c
)
94 int ret
= ov_open_callbacks(datasource
, vf
,
95 NULL
, /* no initial buffer */
96 0, /* no initial bytes */
97 c
); /* the ov_open_callbacks */
101 if (ret
== OV_ENOTVORBIS
)
103 if (ret
== OV_EVERSION
)
104 return -E_OGG_VERSION
;
105 if (ret
== OV_EBADHEADER
)
106 return -E_OGG_BAD_HEADER
;
108 return -E_OGG_UNKNOWN_ERROR
;
113 static int ogg_compute_header_len(char *map
, size_t numbytes
,
114 struct audio_format_info
*afi
)
117 size_t len
= PARA_MIN(numbytes
, CHUNK_SIZE
);
125 ogg_stream_state
*stream_in
= para_malloc(sizeof(ogg_stream_state
));
126 ogg_stream_state
*stream_out
= para_malloc(sizeof(ogg_stream_state
));
127 ogg_sync_state
*sync_in
= para_malloc(sizeof(ogg_sync_state
));
129 ogg_sync_init(sync_in
);
130 vorbis_info_init(&vi
);
131 vorbis_comment_init(&vc
);
132 buf
= ogg_sync_buffer(sync_in
, (long)len
);
133 memcpy(buf
, map
, len
);
134 ogg_sync_wrote(sync_in
, (long)len
);
135 ret
= -E_SYNC_PAGEOUT
;
136 if (ogg_sync_pageout(sync_in
, &page
) <= 0)
138 serial
= ogg_page_serialno(&page
);
139 ogg_stream_init(stream_in
, serial
);
140 ogg_stream_init(stream_out
, serial
);
141 ret
= ogg_stream_pagein(stream_in
, &page
);
143 ret
= -E_STREAM_PAGEIN
;
146 ret
= ogg_stream_packetout(stream_in
, &packet
);
148 ret
= -E_STREAM_PACKETOUT
;
152 if (vorbis_synthesis_headerin(&vi
, &vc
, &packet
) < 0)
154 PARA_INFO_LOG("channels: %i, rate: %li\n", vi
.channels
, vi
.rate
);
155 ogg_stream_packetin(stream_out
, &packet
);
157 ret
= ogg_sync_pageout(sync_in
, &page
);
159 ret
= -E_SYNC_PAGEOUT
;
162 ogg_stream_pagein(stream_in
, &page
);
163 ogg_stream_packetout(stream_in
, &packet
);
164 ogg_stream_packetin(stream_out
, &packet
);
166 ret
= ogg_sync_pageout(sync_in
, &page
);
168 ret
= -E_SYNC_PAGEOUT
;
171 ogg_stream_pagein(stream_in
, &page
);
172 ogg_stream_packetout(stream_in
, &packet
);
173 ogg_stream_packetin(stream_out
, &packet
);
176 while (ogg_stream_flush(stream_out
, &page
))
177 afi
->header_len
+= page
.body_len
+ page
.header_len
;
178 PARA_INFO_LOG("header_len = %d\n", afi
->header_len
);
179 afi
->header_offset
= 0;
182 ogg_stream_destroy(stream_in
);
183 ogg_stream_destroy(stream_out
);
185 ogg_sync_destroy(sync_in
);
186 vorbis_info_clear(&vi
);
187 vorbis_comment_clear(&vc
);
192 * Alloc and fill array table of byte offsets. chunk_table[i] is the
193 * offset in the current input file at which the sample containing time i *
194 * CHUNK_TIME begins. Always successful.
196 static long unsigned ogg_compute_chunk_table(OggVorbis_File
*of
,
197 struct audio_format_info
*afi
, long unsigned time_total
)
200 ssize_t max_chunk_len
, pos
= 0, min
= 0, old_pos
;
201 long unsigned num_chunks
;
205 num
= time_total
/ chunk_time
+ 3;
206 PARA_DEBUG_LOG("chunk time: %g allocating %d chunk pointers\n",
208 afi
->chunk_table
= para_malloc((num
+ 1) * sizeof(size_t));
209 afi
->chunk_table
[0] = 0;
211 for (i
= 1; ret
<= num
; i
++) {
213 ret
= ov_time_seek(of
, i
* chunk_time
);
216 pos
= ov_raw_tell(of
);
217 diff
= pos
- old_pos
;
218 max_chunk_len
= PARA_MAX(max_chunk_len
, diff
);
219 min
= (i
== 1)? diff
: PARA_MIN(min
, diff
);
220 afi
->chunk_table
[i
] = pos
;
221 // if (i < 11 || !((i - 1) % 1000)|| i > num - 11)
222 // PARA_DEBUG_LOG("chunk #%d: %g secs, pos: %zd, "
223 // "size: %zd\n", i - 1,
224 // i * chunk_time, pos, pos - old_pos);
228 //fi->chunk_table[i] = pos;
229 PARA_INFO_LOG("%lu chunks (%fs), max chunk: %zd, min chunk: %zd\n",
230 num_chunks
, chunk_time
, max_chunk_len
, min
);
235 * Init oggvorbis file and write some tech data to given pointers.
237 static int ogg_get_file_info(char *map
, size_t numbytes
,
238 struct audio_format_info
*afi
)
243 const ov_callbacks ovc
= {
244 .read_func
= cb_read
,
245 .seek_func
= cb_seek
,
246 .close_func
= cb_close
,
249 struct ogg_datasource ods
= {.map
= map
, .numbytes
= numbytes
, .fpos
= 0};
251 ret
= ogg_compute_header_len(map
, numbytes
, afi
);
254 ret
= ogg_open_callbacks(&ods
, &of
, ovc
);
258 vi
= ov_info(&of
, 0);
261 afi
->seconds_total
= ov_time_total(&of
, -1);
262 afi
->frequency
= vi
->rate
;
263 afi
->bitrate
= ov_bitrate(&of
, 0);
264 afi
->channels
= vi
->channels
;
265 afi
->chunks_total
= ogg_compute_chunk_table(&of
, afi
, afi
->seconds_total
);
266 sprintf(afi
->info_string
, "audio_file_info1:%lu x %lu, %ukHz, "
267 "%d channels, %ukbps\n"
268 "audio_file_info2: \n"
269 "audio_file_info3: \n",
270 afi
->chunks_total
, (long unsigned) (chunk_time
* 1000 * 1000),
271 afi
->frequency
/ 1000, vi
->channels
, afi
->bitrate
/ 1000
273 afi
->chunk_tv
.tv_sec
= 0;
274 afi
->chunk_tv
.tv_usec
= 250 * 1000;
275 tv_scale(3, &afi
->chunk_tv
, &afi
->eof_tv
);
278 ov_clear(&of
); /* keeps the file open */
282 static const char* ogg_suffixes
[] = {"ogg", NULL
};
285 * the init function of the ogg vorbis audio format handler
287 * \param afh pointer to the struct to initialize
289 void ogg_init(struct audio_format_handler
*afh
)
291 afh
->get_file_info
= ogg_get_file_info
,
292 afh
->suffixes
= ogg_suffixes
;