source: roaraudio/roard/codecfilter_vorbis.c @ 582:dd12ba513b27

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

added cf_vorbis_write()

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