source: roaraudio/roard/codecfilter_vorbis.c @ 587:e6cd07dec284

Last change on this file since 587:e6cd07dec284 was 587:e6cd07dec284, checked in by phi, 16 years ago

yehaa! encoding vorbis seems to work :)))

File size: 7.8 KB
Line 
1//codecfilter_vorbis.c:
2
3#include "roard.h"
4
5#ifdef ROAR_HAVE_LIBVORBISFILE
6
7int cf_vorbis_open(CODECFILTER_USERDATA_T * inst, int codec,
8                                            struct roar_stream_server * info,
9                                            struct roar_codecfilter   * filter) {
10 struct codecfilter_vorbis_inst * self = malloc(sizeof(struct codecfilter_vorbis_inst));
11 struct roar_stream * s = ROAR_STREAM(info);
12
13 if ( !self )
14  return -1;
15
16 self->current_section      = -1;
17 self->last_section         = -1;
18 self->opened               =  0;
19 self->got_it_running       =  0;
20 self->stream               = info;
21// self->outlen               = ROAR_OUTPUT_BUFFER_SAMPLES * s->info.channels * s->info.bits / 8; // optimal size
22#ifdef ROAR_HAVE_LIBVORBISENC
23 self->encoding             = 0;
24#endif
25
26 ROAR_DBG("cf_vorbis_open(*): info->id=%i", ROAR_STREAM(info)->id);
27
28 if ( (self->in = fdopen(s->fh, "r")) == NULL ) {
29  free((void*)self);
30  return -1;
31 }
32
33 *inst = (CODECFILTER_USERDATA_T) self;
34
35 s->info.codec = ROAR_CODEC_DEFAULT;
36 s->info.bits  = 16;
37
38 if ( s->dir == ROAR_DIR_PLAY ) {
39  return 0;
40 } else if ( s->dir == ROAR_DIR_MONITOR ) {
41#ifdef ROAR_HAVE_LIBVORBISENC
42  // set up the encoder here
43
44  memset(&(self->encoder), 0, sizeof(self->encoder));
45
46  self->encoding = 1;
47
48  vorbis_info_init(&(self->encoder.vi));
49  vorbis_comment_init(&(self->encoder.vc));
50  vorbis_comment_add_tag(&(self->encoder.vc), "SERVER", "RoarAudio");
51  vorbis_comment_add_tag(&(self->encoder.vc), "ENCODER", "RoarAudio Vorbis codecfilter");
52
53  if( vorbis_encode_init_vbr(&(self->encoder.vi), (long) s->info.channels, (long) s->info.rate,
54                                                  self->encoder.v_base_quality) != 0 ) {
55   ROAR_ERR("cf_vorbis_open(*): Can not vorbis_encode_init_vbr(*)!");
56   vorbis_info_clear(&(self->encoder.vi)); // TODO: do we need to free vc also?
57   free(self);
58   return -1;
59  }
60
61  vorbis_analysis_init(&(self->encoder.vd), &(self->encoder.vi));
62  vorbis_block_init(&(self->encoder.vd), &(self->encoder.vb));
63
64                                     //  "RA"<<16 + PID<<8 + Stream ID
65  ogg_stream_init(&(self->encoder.os), 0x52410000 + ((getpid() & 0xff)<<8) + s->id);
66
67#else
68 free(self);
69 return -1;
70#endif
71 } else {
72  free(self);
73  return -1;
74 }
75
76 return 0;
77}
78
79int cf_vorbis_close(CODECFILTER_USERDATA_T   inst) {
80 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
81
82 if ( !inst )
83  return -1;
84
85 if ( self->got_it_running )
86  ov_clear(&(self->vf));
87
88#ifdef ROAR_HAVE_LIBVORBISENC
89 if ( self->encoding ) {
90  ogg_stream_clear(&(self->encoder.os));
91  vorbis_block_clear(&(self->encoder.vb));
92  vorbis_dsp_clear(&(self->encoder.vd));
93  vorbis_info_clear(&(self->encoder.vi));
94 }
95#endif
96
97 free(inst);
98 return 0;
99}
100
101int cf_vorbis_write(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
102#ifdef ROAR_HAVE_LIBVORBISENC
103 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
104 struct roar_stream * s = ROAR_STREAM(self->stream);
105 ogg_packet header;
106 ogg_packet header_comm;
107 ogg_packet header_code;
108 float ** encbuf;
109 int i, c;
110 int chans;
111 int end;
112 int16_t * data = (int16_t *) buf;
113
114 if ( ! self->opened ) {
115  vorbis_analysis_headerout(&(self->encoder.vd), &(self->encoder.vc), &header, &header_comm, &header_code);
116
117  ogg_stream_packetin(&(self->encoder.os), &header);
118  ogg_stream_packetin(&(self->encoder.os), &header_comm);
119  ogg_stream_packetin(&(self->encoder.os), &header_code);
120
121  while (ogg_stream_flush(&(self->encoder.os), &(self->encoder.og))) {
122   if ( write(s->fh, self->encoder.og.header, self->encoder.og.header_len) != self->encoder.og.header_len ||
123        write(s->fh, self->encoder.og.body,   self->encoder.og.body_len  ) != self->encoder.og.body_len     ) {
124    free(self); // TODO: do we need addional cleanup?
125    return -1;
126   }
127  }
128  self->opened = 1;
129 } else {
130  encbuf = vorbis_analysis_buffer(&(self->encoder.vd), len /* TODO: need to lookup the menaing of this */);
131  chans  = s->info.channels;
132  end    = len/(2*chans);
133
134  if ( chans == 1 ) { // use optimized code
135   for (i = 0; i < end; i++)
136    encbuf[0][i] = data[i]/32768.0;
137
138  } else if ( chans == 2 ) { // use optimized code
139   for (i = 0; i < end; i++) {
140    encbuf[0][i] = data[2*i  ]/32768.0;
141    encbuf[1][i] = data[2*i+1]/32768.0;
142   }
143  } else { // use generic multi channel code
144   for (i = 0; i < end; i++) {
145    for (c = 0; c < chans; c++) {
146     encbuf[c][i] = data[chans*i+c]/32768.0;
147    }
148   }
149  }
150
151  vorbis_analysis_wrote(&(self->encoder.vd), i);
152
153  while ( vorbis_analysis_blockout(&(self->encoder.vd), &(self->encoder.vb)) == 1 ) {
154   vorbis_analysis(&(self->encoder.vb), &(self->encoder.op));
155   vorbis_bitrate_addblock(&(self->encoder.vb));
156
157   while ( vorbis_bitrate_flushpacket(&(self->encoder.vd), &(self->encoder.op)) ) {
158    ogg_stream_packetin(&(self->encoder.os), &(self->encoder.op));
159
160    while( ogg_stream_pageout(&(self->encoder.os), &(self->encoder.og)) ) {
161     write(s->fh, self->encoder.og.header, self->encoder.og.header_len);
162     write(s->fh, self->encoder.og.body,   self->encoder.og.body_len  );
163    }
164   }
165  }
166 }
167
168  return len; // we assume every thing was written (at least into our dsp anaylises buffer
169#else
170 errno = ENOSYS;
171 return -1;
172#endif
173}
174int cf_vorbis_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
175 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
176 long r;
177 long todo = len;
178 long done = 0;
179
180// printf("cf_vorbis_read(inst=%p, buf=%p, len=%i) = ?\n", inst, buf, len);
181
182 self->opened++;
183 if ( self->opened == 16 ) {
184  //printf("cf_vorbis_read(*): opening...\n");
185  if ( ov_open(self->in, &(self->vf), NULL, 0) < 0 ) {
186//   free((void*)self);
187   return 0;
188  }
189 }
190
191 if ( self->opened < 16 ) {
192  errno = EAGAIN;
193  return -1;
194 }
195
196
197 self->got_it_running = 1;
198
199 while (todo) {
200  r = ov_read(&(self->vf), buf+done, todo, 0, 2, 1, &(self->current_section));
201  if ( r < 1 ) {
202   break;
203  } else {
204   if ( self->last_section != self->current_section )
205    if ( cf_vorbis_update_stream(self) == -1 )
206     return 0;
207
208   self->last_section = self->current_section;
209   todo -= r;
210   done += r;
211  }
212 }
213
214 //printf("ov_read(*) = %i\n", done);
215
216 if ( done == 0 ) {
217  // do some EOF handling...
218  return 0;
219 } else {
220  return len;
221 }
222}
223
224int cf_vorbis_update_stream (struct codecfilter_vorbis_inst * self) {
225 vorbis_info *vi = ov_info(&(self->vf), -1);
226 char **ptr = ov_comment(&(self->vf), -1)->user_comments;
227 char key[80] = {0}, value[80] = {0};
228 struct roar_stream * s = ROAR_STREAM(self->stream);
229 int type;
230 int j, h = 0;
231 float rpg_track = 0, rpg_album = 0;
232
233 s->info.channels = vi->channels;
234 s->info.rate     = vi->rate;
235 s->info.bits     = 16;
236 s->info.codec    = ROAR_CODEC_DEFAULT;
237
238 stream_meta_clear(s->id);
239
240 while(*ptr){
241   for (j = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++)
242    key[j] = (*ptr)[j];
243    key[j] = 0;
244
245   for (j++, h = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++)
246    value[h++] = (*ptr)[j];
247    value[h]   = 0;
248
249   type = roar_meta_inttype(key);
250   if ( type != -1 )
251    stream_meta_set(s->id, type, "", value);
252
253   ROAR_DBG("cf_vorbis_update_stream(*): Meta %-16s: %s", key, value);
254
255   if ( strcmp(key, "REPLAYGAIN_TRACK_PEAK") == 0 ) {
256    rpg_track = 1/atof(value);
257/*
258   } else if ( strcmp(key, "REPLAYGAIN_TRACK_GAIN") == 0 ) {
259    rpg_track = powf(10, atof(value)/20);
260*/
261   } else if ( strcmp(key, "REPLAYGAIN_ALBUM_PEAK") == 0 ) {
262    rpg_album = 1/atof(value);
263/*
264   } else if ( strcmp(key, "REPLAYGAIN_ALBUM_GAIN") == 0 ) {
265    rpg_album = powf(10, atof(value)/20);
266*/
267   }
268
269   ++ptr;
270 }
271
272 if ( rpg_album ) {
273  self->stream->mixer.rpg_div = 2718;  // = int(exp(1)*1000)
274  self->stream->mixer.rpg_mul = (float)rpg_album*2718;
275 } else if ( rpg_track ) {
276  self->stream->mixer.rpg_div = 2718;
277  self->stream->mixer.rpg_mul = (float)rpg_track*2718;
278 }
279
280 //printf("RPG: mul=%i, div=%i\n", self->stream->mixer.rpg_mul, self->stream->mixer.rpg_div);
281 return 0;
282}
283
284#endif
285
286//ll
Note: See TracBrowser for help on using the repository browser.