source: roaraudio/roard/codecfilter_vorbis.c @ 584:8c036ec915ae

Last change on this file since 584:8c036ec915ae was 584:8c036ec915ae, checked in by phi, 16 years ago

test for self->opened

File size: 6.5 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
109 if ( ! self->opened ) {
110 } else {
111  vorbis_analysis_headerout(&(self->encoder.vd), &(self->encoder.vc), &header, &header_comm, &header_code);
112
113  ogg_stream_packetin(&(self->encoder.os), &header);
114  ogg_stream_packetin(&(self->encoder.os), &header_comm);
115  ogg_stream_packetin(&(self->encoder.os), &header_code);
116
117  while (ogg_stream_flush(&(self->encoder.os), &(self->encoder.og))) {
118   if ( write(s->fh, self->encoder.og.header, self->encoder.og.header_len) != self->encoder.og.header_len ||
119        write(s->fh, self->encoder.og.body,   self->encoder.og.body_len  ) != self->encoder.og.body_len     ) {
120    free(self); // TODO: do we need addional cleanup?
121    return -1;
122   }
123  }
124  self->opened = 1;
125 }
126
127  return len; // we assume every thing was written (at least into our dsp anaylises buffer
128#else
129 errno = ENOSYS;
130 return -1;
131#endif
132}
133int cf_vorbis_read(CODECFILTER_USERDATA_T   inst, char * buf, int len) {
134 struct codecfilter_vorbis_inst * self = (struct codecfilter_vorbis_inst *) inst;
135 long r;
136 long todo = len;
137 long done = 0;
138
139// printf("cf_vorbis_read(inst=%p, buf=%p, len=%i) = ?\n", inst, buf, len);
140
141 self->opened++;
142 if ( self->opened == 16 ) {
143  //printf("cf_vorbis_read(*): opening...\n");
144  if ( ov_open(self->in, &(self->vf), NULL, 0) < 0 ) {
145//   free((void*)self);
146   return 0;
147  }
148 }
149
150 if ( self->opened < 16 ) {
151  errno = EAGAIN;
152  return -1;
153 }
154
155
156 self->got_it_running = 1;
157
158 while (todo) {
159  r = ov_read(&(self->vf), buf+done, todo, 0, 2, 1, &(self->current_section));
160  if ( r < 1 ) {
161   break;
162  } else {
163   if ( self->last_section != self->current_section )
164    if ( cf_vorbis_update_stream(self) == -1 )
165     return 0;
166
167   self->last_section = self->current_section;
168   todo -= r;
169   done += r;
170  }
171 }
172
173 //printf("ov_read(*) = %i\n", done);
174
175 if ( done == 0 ) {
176  // do some EOF handling...
177  return 0;
178 } else {
179  return len;
180 }
181}
182
183int cf_vorbis_update_stream (struct codecfilter_vorbis_inst * self) {
184 vorbis_info *vi = ov_info(&(self->vf), -1);
185 char **ptr = ov_comment(&(self->vf), -1)->user_comments;
186 char key[80] = {0}, value[80] = {0};
187 struct roar_stream * s = ROAR_STREAM(self->stream);
188 int type;
189 int j, h = 0;
190 float rpg_track = 0, rpg_album = 0;
191
192 s->info.channels = vi->channels;
193 s->info.rate     = vi->rate;
194 s->info.bits     = 16;
195 s->info.codec    = ROAR_CODEC_DEFAULT;
196
197 stream_meta_clear(s->id);
198
199 while(*ptr){
200   for (j = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++)
201    key[j] = (*ptr)[j];
202    key[j] = 0;
203
204   for (j++, h = 0; (*ptr)[j] != 0 && (*ptr)[j] != '='; j++)
205    value[h++] = (*ptr)[j];
206    value[h]   = 0;
207
208   type = roar_meta_inttype(key);
209   if ( type != -1 )
210    stream_meta_set(s->id, type, "", value);
211
212   ROAR_DBG("cf_vorbis_update_stream(*): Meta %-16s: %s", key, value);
213
214   if ( strcmp(key, "REPLAYGAIN_TRACK_PEAK") == 0 ) {
215    rpg_track = 1/atof(value);
216/*
217   } else if ( strcmp(key, "REPLAYGAIN_TRACK_GAIN") == 0 ) {
218    rpg_track = powf(10, atof(value)/20);
219*/
220   } else if ( strcmp(key, "REPLAYGAIN_ALBUM_PEAK") == 0 ) {
221    rpg_album = 1/atof(value);
222/*
223   } else if ( strcmp(key, "REPLAYGAIN_ALBUM_GAIN") == 0 ) {
224    rpg_album = powf(10, atof(value)/20);
225*/
226   }
227
228   ++ptr;
229 }
230
231 if ( rpg_album ) {
232  self->stream->mixer.rpg_div = 2718;  // = int(exp(1)*1000)
233  self->stream->mixer.rpg_mul = (float)rpg_album*2718;
234 } else if ( rpg_track ) {
235  self->stream->mixer.rpg_div = 2718;
236  self->stream->mixer.rpg_mul = (float)rpg_track*2718;
237 }
238
239 //printf("RPG: mul=%i, div=%i\n", self->stream->mixer.rpg_mul, self->stream->mixer.rpg_div);
240 return 0;
241}
242
243#endif
244
245//ll
Note: See TracBrowser for help on using the repository browser.