source: roaraudio/roard/codecfilter_vorbis.c @ 1239:bfbca4801c7b

Last change on this file since 1239:bfbca4801c7b was 1239:bfbca4801c7b, checked in by phi, 15 years ago

done the a bit cleanup

File size: 12.8 KB
Line 
1//codecfilter_vorbis.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008
5 *
6 *  This file is part of roard a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
22 *
23 */
24
25#define ROAR_REQUIRE_LIBVORBISFILE
26
27#include "roard.h"
28
29#ifdef ROAR_HAVE_LIBVORBISFILE
30
31int _g_cf_vorbis_vfvio_return_err (void) {
32 return -1;
33}
34
35ov_callbacks _g_cf_vorbis_vfvio = {
36  .read_func  = cf_vorbis_vfvio_read,
37  .seek_func  = (int    (*)(void *, ogg_int64_t, int      )) _g_cf_vorbis_vfvio_return_err,
38  .close_func = (int    (*)(void *                        )) _g_cf_vorbis_vfvio_return_err,
39  .tell_func  = (long   (*)(void *                        )) _g_cf_vorbis_vfvio_return_err
40};
41
42size_t cf_vorbis_vfvio_read (void *ptr, size_t size, size_t nmemb, void *datasource) {
43 ssize_t r;
44
45 r = stream_vio_s_read(ROAR_STREAM_SERVER(datasource), ptr, size*nmemb);
46
47 ROAR_DBG("cf_vorbis_vfvio_read(ptr=%p, size=%lu, nmemb=%lu, datasource=%p): r=%i", ptr, size, nmemb, datasource, r);
48
49 if ( r == -1 )
50  return 0;
51
52 if ( r > 0 )
53  errno = 0;
54
55 r /= size;
56 
57 ROAR_DBG("cf_vorbis_vfvio_read(ptr=%p, size=%lu, nmemb=%lu, datasource=%p) = %i", ptr, size, nmemb, datasource, r);
58 return r;
59}
60
61int cf_vorbis_open(CODECFILTER_USERDATA_T * inst, int codec,
62                                            struct roar_stream_server * info,
63                                            struct roar_codecfilter   * filter) {
64 struct codecfilter_vorbis_inst * self = malloc(sizeof(struct codecfilter_vorbis_inst));
65 struct roar_stream * s = ROAR_STREAM(info);
66
67 if ( !self )
68  return -1;
69
70 self->current_section      = -1;
71 self->last_section         = -1;
72 self->opened               =  0;
73 self->got_it_running       =  0;
74 self->stream               = info;
75// self->outlen               = ROAR_OUTPUT_BUFFER_SAMPLES * s->info.channels * s->info.bits / 8; // optimal size
76#ifdef ROAR_HAVE_LIBVORBISENC
77 self->encoding               = 0;
78 self->encoder.v_base_quality = 0.3;
79 self->encoder.srn            = -1;
80#endif
81
82 ROAR_DBG("cf_vorbis_open(*): info->id=%i", ROAR_STREAM(info)->id);
83
84 *inst = (CODECFILTER_USERDATA_T) self;
85
86 s->info.codec = ROAR_CODEC_DEFAULT;
87 s->info.bits  = 16;
88
89 if ( s->dir == ROAR_DIR_PLAY ) {
90  return 0;
91 } else if ( s->dir == ROAR_DIR_MONITOR || s->dir == ROAR_DIR_OUTPUT ) {
92#ifdef ROAR_HAVE_LIBVORBISENC
93  // set up the encoder here
94 if ( cf_vorbis_encode_start(self) == -1 ) {
95  free(self);
96  return -1;
97 }
98#else
99 free(self);
100 return -1;
101#endif
102 } else {
103  free(self);
104  return -1;
105 }
106
107 return 0;
108}
109
110int cf_vorbis_close(CODECFILTER_USERDATA_T   inst) {
111 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
112
113 if ( !inst )
114  return -1;
115
116 if ( self->got_it_running )
117  ov_clear(&(self->vf));
118
119#ifdef ROAR_HAVE_LIBVORBISENC
120 if ( self->encoding ) {
121  cf_vorbis_encode_end(self);
122 }
123#endif
124
125 free(inst);
126 return 0;
127}
128
129int cf_vorbis_write(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
130#ifdef ROAR_HAVE_LIBVORBISENC
131 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
132 struct roar_stream * s = ROAR_STREAM(self->stream);
133 ogg_packet header;
134 ogg_packet header_comm;
135 ogg_packet header_code;
136 float ** encbuf;
137 int i, c;
138 int chans;
139 int end;
140 int16_t * data = (int16_t *) buf;
141
142 if ( ! self->opened ) {
143  vorbis_analysis_headerout(&(self->encoder.vd), &(self->encoder.vc), &header, &header_comm, &header_code);
144
145  ogg_stream_packetin(&(self->encoder.os), &header);
146  ogg_stream_packetin(&(self->encoder.os), &header_comm);
147  ogg_stream_packetin(&(self->encoder.os), &header_code);
148
149  while (ogg_stream_flush(&(self->encoder.os), &(self->encoder.og))) {
150   if ( stream_vio_s_write(self->stream, self->encoder.og.header, self->encoder.og.header_len)
151                                                                 != self->encoder.og.header_len ||
152        stream_vio_s_write(self->stream, self->encoder.og.body,   self->encoder.og.body_len  )
153                                                                 != self->encoder.og.body_len     ) {
154    free(self); // TODO: do we need addional cleanup?
155    return -1;
156   }
157  }
158  self->opened = 1;
159 } else {
160  encbuf = vorbis_analysis_buffer(&(self->encoder.vd), len /* TODO: need to lookup the menaing of this */);
161  chans  = s->info.channels;
162  end    = len/(2*chans);
163
164  if ( chans == 1 ) { // use optimized code
165   for (i = 0; i < end; i++)
166    encbuf[0][i] = data[i]/32768.0;
167
168  } else if ( chans == 2 ) { // use optimized code
169   for (i = 0; i < end; i++) {
170    encbuf[0][i] = data[2*i  ]/32768.0;
171    encbuf[1][i] = data[2*i+1]/32768.0;
172   }
173  } else { // use generic multi channel code
174   for (i = 0; i < end; i++) {
175    for (c = 0; c < chans; c++) {
176     encbuf[c][i] = data[chans*i+c]/32768.0;
177    }
178   }
179  }
180
181  vorbis_analysis_wrote(&(self->encoder.vd), i);
182
183  if ( cf_vorbis_encode_flushout(self) == -1 )
184   return -1;
185 }
186
187  return len; // we assume every thing was written (at least into our dsp anaylises buffer
188#else
189 errno = ENOSYS;
190 return -1;
191#endif
192}
193int cf_vorbis_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
194 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
195 long r;
196 long todo = len;
197 long done = 0;
198
199// printf("cf_vorbis_read(inst=%p, buf=%p, len=%i) = ?\n", inst, buf, len);
200
201 self->opened++;
202 if ( self->opened == 16 ) {
203
204  //printf("cf_vorbis_read(*): opening...\n");
205  if ( ov_open_callbacks((void*)self->stream, &(self->vf), NULL, 0, _g_cf_vorbis_vfvio) < 0 ) {
206   return 0;
207  }
208  errno = EAGAIN;
209  return -1;
210 }
211
212 if ( self->opened < 16 ) {
213  errno = EAGAIN;
214  return -1;
215 }
216
217
218 self->got_it_running = 1;
219
220 while (todo) {
221  r = ov_read(&(self->vf), buf+done, todo, 0, 2, 1, &(self->current_section));
222  if ( r == OV_HOLE ) {
223   ROAR_DBG("cf_vorbis_read(*): Hole in stream");
224  } else if ( r < 1 ) {
225   break;
226  } else {
227   if ( self->last_section != self->current_section )
228    if ( cf_vorbis_update_stream(self) == -1 )
229     return 0;
230
231   self->last_section = self->current_section;
232   todo -= r;
233   done += r;
234  }
235 }
236
237//printf("ov_read(*) = %i\n", done);
238
239 if ( done == 0 ) {
240  // do some EOF handling...
241  return 0;
242 } else {
243  return len;
244 }
245}
246
247int cf_vorbis_update_stream (struct codecfilter_vorbis_inst * self) {
248 vorbis_info *vi = ov_info(&(self->vf), -1);
249 char **ptr = ov_comment(&(self->vf), -1)->user_comments;
250 char key[ROAR_META_MAX_NAMELEN] = {0}, value[LIBROAR_BUFFER_MSGDATA] = {0};
251 struct roar_stream * s = ROAR_STREAM(self->stream);
252 int type;
253 int j, h = 0;
254 float rpg_track = 0, rpg_album = 0;
255 int meta_ok;
256
257 s->info.channels = vi->channels;
258 s->info.rate     = vi->rate;
259 s->info.bits     = 16;
260 s->info.codec    = ROAR_CODEC_DEFAULT;
261
262 stream_meta_clear(s->id);
263
264 while(*ptr){
265  meta_ok = 1;
266
267   for (j = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++) {
268    if ( j == ROAR_META_MAX_NAMELEN ) {
269     ROAR_ERR("cf_vorbis_update_stream(*): invalid meta data on stream %i: meta data key too long", s->id);
270     meta_ok = 0;
271     j = 0;
272     break;
273    }
274    key[j] = (*ptr)[j];
275   }
276   key[j] = 0;
277
278   if ( meta_ok ) {
279    for (j++, h = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++) {
280     if ( h == LIBROAR_BUFFER_MSGDATA ) {
281      ROAR_ERR("update_stream(*): invalid meta data on stream %i: meta data value for key '%s' too long", s->id, key);
282      meta_ok = 0;
283      h = 0;
284      break;
285     }
286     value[h++] = (*ptr)[j];
287    }
288    value[h]   = 0;
289   }
290
291   if ( meta_ok ) {
292    type = roar_meta_inttype(key);
293    if ( type != -1 )
294     stream_meta_set(s->id, type, "", value);
295
296    ROAR_DBG("cf_vorbis_update_stream(*): Meta %-16s: %s", key, value);
297
298    if ( strcmp(key, "REPLAYGAIN_TRACK_PEAK") == 0 ) {
299     rpg_track = 1/atof(value);
300/*
301    } else if ( strcmp(key, "REPLAYGAIN_TRACK_GAIN") == 0 ) {
302     rpg_track = powf(10, atof(value)/20);
303*/
304    } else if ( strcmp(key, "REPLAYGAIN_ALBUM_PEAK") == 0 ) {
305     rpg_album = 1/atof(value);
306/*
307    } else if ( strcmp(key, "REPLAYGAIN_ALBUM_GAIN") == 0 ) {
308     rpg_album = powf(10, atof(value)/20);
309*/
310    }
311   }
312
313   ptr++;
314 }
315
316 if ( rpg_album ) {
317  self->stream->mixer.rpg_div = 2718;  // = int(exp(1)*1000)
318  self->stream->mixer.rpg_mul = (float)rpg_album*2718;
319 } else if ( rpg_track ) {
320  self->stream->mixer.rpg_div = 2718;
321  self->stream->mixer.rpg_mul = (float)rpg_track*2718;
322 }
323
324 stream_meta_finalize(s->id);
325 //printf("RPG: mul=%i, div=%i\n", self->stream->mixer.rpg_mul, self->stream->mixer.rpg_div);
326 return 0;
327}
328
329int cf_vorbis_encode_start  (struct codecfilter_vorbis_inst * self) {
330#ifdef ROAR_HAVE_LIBVORBISENC
331 int srn = self->encoder.srn; // this value is allrady inited...
332 int len = 0;
333 int i;
334 int types[ROAR_META_MAX_PER_STREAM];
335 int sid = ROAR_STREAM(self->stream)->id;
336 char val[LIBROAR_BUFFER_MSGDATA];
337
338  val[LIBROAR_BUFFER_MSGDATA-1] = 0;
339
340  memset(&(self->encoder), 0, sizeof(self->encoder));
341
342  self->encoding = 1;
343  self->encoder.srn = srn + 1;;
344
345  vorbis_info_init(&(self->encoder.vi));
346  vorbis_comment_init(&(self->encoder.vc));
347  vorbis_comment_add_tag(&(self->encoder.vc), "SERVER", "RoarAudio");
348  vorbis_comment_add_tag(&(self->encoder.vc), "ENCODER", "RoarAudio Vorbis codecfilter");
349
350  if ( (len = stream_meta_list(sid, types, ROAR_META_MAX_PER_STREAM)) != -1 ) {
351   for (i = 0; i < len; i++) {
352//int stream_meta_get     (int id, int type, char * name, char * val, size_t len);
353    if ( stream_meta_get(sid, types[i], NULL, val, LIBROAR_BUFFER_MSGDATA-1) == 0 )
354     vorbis_comment_add_tag(&(self->encoder.vc), roar_meta_strtype(types[i]), val);
355   }
356  }
357
358  if( vorbis_encode_init_vbr(&(self->encoder.vi), (long) ROAR_STREAM(self->stream)->info.channels,
359                                                  (long) ROAR_STREAM(self->stream)->info.rate,
360                                                  self->encoder.v_base_quality) != 0 ) {
361   ROAR_ERR("cf_vorbis_encode_start(*): Can not vorbis_encode_init_vbr(*)!");
362   vorbis_info_clear(&(self->encoder.vi)); // TODO: do we need to free vc also?
363   return -1;
364  }
365
366  vorbis_analysis_init(&(self->encoder.vd), &(self->encoder.vi));
367  vorbis_block_init(&(self->encoder.vd), &(self->encoder.vb));
368
369  ROAR_DBG("cf_vorbis_encode_start(*): srn=%i", self->encoder.srn);
370                                     //  "RA"<<16 + PID<<8 + Stream ID
371  ogg_stream_init(&(self->encoder.os),
372                   (((0x5241 + self->encoder.srn) & 0xffff)<<16) +
373                   ( (getpid()                    & 0x00ff)<< 8) +
374                   (  sid                         & 0x00ff));
375 return 0;
376#else
377 return -1;
378#endif
379}
380
381int cf_vorbis_encode_end    (struct codecfilter_vorbis_inst * self) {
382#ifdef ROAR_HAVE_LIBVORBISENC
383 if ( self->encoding ) {
384  // try to flush up to an EOS page...
385  vorbis_analysis_buffer(&(self->encoder.vd), 2*ROAR_MAX_CHANNELS);
386  vorbis_analysis_wrote(&(self->encoder.vd), 0);
387  cf_vorbis_encode_flushout(self);
388
389  // clean up...
390  ogg_stream_clear(&(self->encoder.os));
391  vorbis_block_clear(&(self->encoder.vb));
392  vorbis_dsp_clear(&(self->encoder.vd));
393  vorbis_info_clear(&(self->encoder.vi));
394  self->opened = 0;
395 }
396
397 return 0;
398#else
399 return -1;
400#endif
401}
402
403int cf_vorbis_encode_flushout(struct codecfilter_vorbis_inst * self) {
404#ifdef ROAR_HAVE_LIBVORBISENC
405 while ( vorbis_analysis_blockout(&(self->encoder.vd), &(self->encoder.vb)) == 1 ) {
406  vorbis_analysis(&(self->encoder.vb), &(self->encoder.op));
407  vorbis_bitrate_addblock(&(self->encoder.vb));
408
409  while ( vorbis_bitrate_flushpacket(&(self->encoder.vd), &(self->encoder.op)) ) {
410   ogg_stream_packetin(&(self->encoder.os), &(self->encoder.op));
411
412   while( ogg_stream_pageout(&(self->encoder.os), &(self->encoder.og)) ) {
413    if (
414         stream_vio_s_write(self->stream, self->encoder.og.header, self->encoder.og.header_len) == -1 ||
415         stream_vio_s_write(self->stream, self->encoder.og.body,   self->encoder.og.body_len  ) == -1   ) {
416     return -1;
417    }
418   }
419  }
420 }
421
422 return 0;
423#else
424 return -1;
425#endif
426}
427
428int cf_vorbis_ctl(CODECFILTER_USERDATA_T   inst, int cmd, void * data) {
429 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
430
431 switch (cmd) {
432  case ROAR_CODECFILTER_CTL2CMD(ROAR_CODECFILTER_CTL_META_UPDATE):
433    ROAR_DBG("cf_vorbis_ctl(*): stoping stream...");
434    if ( cf_vorbis_encode_end(self) == -1 )
435     return -1;
436    ROAR_DBG("cf_vorbis_ctl(*): restarting stream...");
437    if ( cf_vorbis_encode_start(self) == -1 )
438     return -1;
439
440    return 0;
441   break;
442  default:
443    return -1;
444 }
445
446 return -1;
447}
448
449#endif
450//ll
Note: See TracBrowser for help on using the repository browser.