source: roaraudio/roard/codecfilter_vorbis.c @ 586:86cf0fedfa63

Last change on this file since 586:86cf0fedfa63 was 586:86cf0fedfa63, checked in by phi, 16 years ago

aedded a bit code for encoding

File size: 7.2 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
152  return len; // we assume every thing was written (at least into our dsp anaylises buffer
153#else
154 errno = ENOSYS;
155 return -1;
156#endif
157}
158int cf_vorbis_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
159 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
160 long r;
161 long todo = len;
162 long done = 0;
163
164// printf("cf_vorbis_read(inst=%p, buf=%p, len=%i) = ?\n", inst, buf, len);
165
166 self->opened++;
167 if ( self->opened == 16 ) {
168  //printf("cf_vorbis_read(*): opening...\n");
169  if ( ov_open(self->in, &(self->vf), NULL, 0) < 0 ) {
170//   free((void*)self);
171   return 0;
172  }
173 }
174
175 if ( self->opened < 16 ) {
176  errno = EAGAIN;
177  return -1;
178 }
179
180
181 self->got_it_running = 1;
182
183 while (todo) {
184  r = ov_read(&(self->vf), buf+done, todo, 0, 2, 1, &(self->current_section));
185  if ( r < 1 ) {
186   break;
187  } else {
188   if ( self->last_section != self->current_section )
189    if ( cf_vorbis_update_stream(self) == -1 )
190     return 0;
191
192   self->last_section = self->current_section;
193   todo -= r;
194   done += r;
195  }
196 }
197
198 //printf("ov_read(*) = %i\n", done);
199
200 if ( done == 0 ) {
201  // do some EOF handling...
202  return 0;
203 } else {
204  return len;
205 }
206}
207
208int cf_vorbis_update_stream (struct codecfilter_vorbis_inst * self) {
209 vorbis_info *vi = ov_info(&(self->vf), -1);
210 char **ptr = ov_comment(&(self->vf), -1)->user_comments;
211 char key[80] = {0}, value[80] = {0};
212 struct roar_stream * s = ROAR_STREAM(self->stream);
213 int type;
214 int j, h = 0;
215 float rpg_track = 0, rpg_album = 0;
216
217 s->info.channels = vi->channels;
218 s->info.rate     = vi->rate;
219 s->info.bits     = 16;
220 s->info.codec    = ROAR_CODEC_DEFAULT;
221
222 stream_meta_clear(s->id);
223
224 while(*ptr){
225   for (j = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++)
226    key[j] = (*ptr)[j];
227    key[j] = 0;
228
229   for (j++, h = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++)
230    value[h++] = (*ptr)[j];
231    value[h]   = 0;
232
233   type = roar_meta_inttype(key);
234   if ( type != -1 )
235    stream_meta_set(s->id, type, "", value);
236
237   ROAR_DBG("cf_vorbis_update_stream(*): Meta %-16s: %s", key, value);
238
239   if ( strcmp(key, "REPLAYGAIN_TRACK_PEAK") == 0 ) {
240    rpg_track = 1/atof(value);
241/*
242   } else if ( strcmp(key, "REPLAYGAIN_TRACK_GAIN") == 0 ) {
243    rpg_track = powf(10, atof(value)/20);
244*/
245   } else if ( strcmp(key, "REPLAYGAIN_ALBUM_PEAK") == 0 ) {
246    rpg_album = 1/atof(value);
247/*
248   } else if ( strcmp(key, "REPLAYGAIN_ALBUM_GAIN") == 0 ) {
249    rpg_album = powf(10, atof(value)/20);
250*/
251   }
252
253   ++ptr;
254 }
255
256 if ( rpg_album ) {
257  self->stream->mixer.rpg_div = 2718;  // = int(exp(1)*1000)
258  self->stream->mixer.rpg_mul = (float)rpg_album*2718;
259 } else if ( rpg_track ) {
260  self->stream->mixer.rpg_div = 2718;
261  self->stream->mixer.rpg_mul = (float)rpg_track*2718;
262 }
263
264 //printf("RPG: mul=%i, div=%i\n", self->stream->mixer.rpg_mul, self->stream->mixer.rpg_div);
265 return 0;
266}
267
268#endif
269
270//ll
Note: See TracBrowser for help on using the repository browser.