source: roaraudio/roard/streams.c @ 2417:ca4883b53c04

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

recsource can only be set ones

File size: 39.1 KB
Line 
1//streams.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#include "roard.h"
26
27int streams_thru_num     =  0;
28int streams_recsource_id = -1;
29
30int streams_init (void) {
31 int i;
32
33 for (i = 0; i < ROAR_STREAMS_MAX; i++)
34  g_streams[i] = NULL;
35
36 return 0;
37}
38
39int streams_free (void) {
40 int i;
41
42 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
43  if ( g_streams[i] != NULL ) {
44   streams_delete(i);
45  }
46 }
47
48 return 0;
49}
50
51
52int streams_new    (void) {
53 int i, j;
54 struct roar_stream        * n = NULL;
55 struct roar_stream_server * s = NULL;
56
57#ifdef ROAR_SUPPORT_LISTEN
58 if ( g_terminate && !g_no_listen ) // don't accept new streams in case of termination state
59  return -1;
60#else
61 if ( g_terminate )                 // don't accept new streams in case of termination state
62  return -1;
63#endif
64
65 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
66  if ( g_streams[i] == NULL ) {
67   s = ROAR_STREAM_SERVER(n = ROAR_STREAM(malloc(sizeof(struct roar_stream_server))));
68   if ( n == NULL ) {
69    ROAR_ERR("streams_new(void): can not allocate memory for new stream: %s", strerror(errno));
70    ROAR_DBG("streams_new(void) = -1");
71    return -1;
72   }
73
74   n->id         = i;
75   n->fh         = -1;
76//   n->pos_rel_id = i;
77/*
78   n->database   = NULL;
79   n->dataoff    = NULL;
80   n->datalen    = 0;
81   n->offset     = 0;
82*/
83   n->pos        = 0;
84
85   s->name            = NULL;
86
87   s->client          = -1;
88   s->socktype        = ROAR_SOCKET_TYPE_UNKNOWN;
89   s->buffer          = NULL;
90   s->need_extra      =  0;
91   s->output          = NULL;
92   s->is_new          =  1;
93   s->codecfilter     = -1;
94   s->pre_underruns   =  0;
95   s->post_underruns  =  0;
96   s->delay           =  0;
97   s->codec_orgi      = -1;
98   s->primary         =  0;
99   s->ready           =  0;
100   s->outputbuffer    = NULL;
101
102   s->mixer.scale     = 65535;
103   s->mixer.rpg_mul   = 1;
104   s->mixer.rpg_div   = 1;
105   for (j = 0; j < ROAR_MAX_CHANNELS; j++)
106    s->mixer.mixer[j] = 65535;
107
108#ifdef ROAR_SUPPORT_META
109   for (j = 0; j < ROAR_META_MAX_PER_STREAM; j++) {
110    s->meta[j].type   = ROAR_META_TYPE_NONE;
111    s->meta[j].key[0] = 0;
112    s->meta[j].value  = NULL;
113   }
114#endif
115
116   roar_vio_init_calls(&(s->vio));
117   s->driver_id = -1;
118   s->flags     =  ROAR_FLAG_NONE;
119
120   //roardsp_fchain_init(&(s->fc));
121
122   g_streams[i] = s;
123   ROAR_DBG("streams_new(void): n->id=%i", n->id);
124   ROAR_DBG("streams_new(void) = %i", i);
125   return i;
126  }
127 }
128
129 return -1;
130}
131
132int streams_delete (int id) {
133 struct roar_stream_server * s;
134 int prim;
135 int no_vio_close = 0;
136 int i;
137
138 if ( (s = g_streams[id]) == NULL )
139  return 0;
140
141 ROAR_DBG("streams_delete(id=%i) = ?", id);
142 ROAR_DBG("streams_delete(id=%i): g_streams[id]->id=%i", id, ROAR_STREAM(s)->id);
143
144 if ( streams_get_flag(id, ROAR_FLAG_RECSOURCE) == 1 )
145  streams_reset_flag(id, ROAR_FLAG_RECSOURCE);
146
147 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
148  if ( g_streams[i] != NULL && ROAR_STREAM(g_streams[i])->pos_rel_id == id ) {
149   switch (ROAR_STREAM(g_streams[i])->dir) {
150    case ROAR_DIR_THRU:
151    case ROAR_DIR_RAW_IN:
152      streams_delete(i);
153     break;
154    default:
155      ROAR_STREAM(g_streams[i])->pos_rel_id = -1;
156   }
157  }
158 }
159
160 if ( ROAR_STREAM(s)->dir == ROAR_DIR_THRU )
161  streams_thru_num--;
162
163#ifdef ROAR_SUPPORT_META
164 // delete meta data form other meta streams if needed
165 if ( streams_get_flag(id, ROAR_FLAG_META) == 1 ) {
166  ROAR_DBG("streams_delete(id=%i): deleting meta stream!", id);
167  stream_meta_clear(id);
168  stream_meta_finalize(id);
169 }
170#endif
171
172 if ( s->codecfilter != -1 ) {
173  codecfilter_close(s->codecfilter_inst, s->codecfilter);
174  s->codecfilter_inst = NULL;
175  s->codecfilter = -1;
176 }
177
178 if ( s->driver_id != -1 ) {
179  driver_closevio(&(s->vio), s->driver_id);
180  roar_vio_init_calls(&(s->vio));
181  s->driver_id = -1;
182  no_vio_close =  1;
183 }
184
185 //roardsp_fchain_uninit(&(s->fc));
186
187 if ( s->client != -1 ) {
188  ROAR_DBG("streams_delete(id=%i): Stream is owned by client %i", id, g_streams[id]->client);
189  client_stream_delete(s->client, id);
190 }
191
192 stream_outputbuffer_destroy(id);
193
194 if ( s->buffer != NULL )
195  roar_buffer_free(s->buffer);
196
197 if ( s->output != NULL )
198  free(s->output);
199
200/*
201 if ( ROAR_STREAM(s)->fh != -1 )
202  close(ROAR_STREAM(s)->fh);
203*/
204
205 if ( !no_vio_close )
206  roar_vio_close(&(s->vio));
207
208 prim = s->primary;
209
210 if ( s->name != NULL )
211  free(s->name);
212
213 free(s);
214
215 g_streams[id] = NULL;
216
217 if ( prim ) {
218  alive = 0;
219  clean_quit();
220 }
221
222 ROAR_DBG("streams_delete(id=%i) = 0", id);
223 return 0;
224}
225
226int streams_set_client (int id, int client) {
227 if ( g_streams[id] == NULL )
228  return -1;
229
230 ROAR_DBG("streams_set_client(id=%i): g_streams[id]->id=%i", id, ROAR_STREAM(g_streams[id])->id);
231 g_streams[id]->client = client;
232
233 return 0;
234}
235
236int streams_get_client (int id) {
237 if ( g_streams[id] == NULL )
238  return -1;
239
240 return g_streams[id]->client;
241}
242
243int streams_set_dir    (int id, int dir, int defaults) {
244 struct roar_stream_server * ss;
245
246 if ( (ss = g_streams[id]) == NULL )
247  return -1;
248
249 ROAR_STREAM(ss)->dir = dir;
250
251 if ( dir == ROAR_DIR_THRU )
252  streams_thru_num++;
253
254 if ( defaults ) {
255  if ( dir <= 0 || dir >= ROAR_DIR_DIRIDS )
256   return -1;
257
258  ROAR_DBG("streams_set_dir(*): g_config->streams[dir=%i].flags = 0x%.4x", dir, g_config->streams[dir].flags);
259
260  if ( streams_set_flag(id, g_config->streams[dir].flags) == -1 ) {
261   ROAR_DBG("streams_set_dir(*) = -1 // can not set stream flags");
262   return -1;
263  }
264
265   ss->mixer.scale   = g_config->streams[dir].mixer.scale;
266   ss->mixer.rpg_mul = g_config->streams[dir].mixer.rpg_mul;
267   ss->mixer.rpg_div = g_config->streams[dir].mixer.rpg_div;
268 }
269
270 ROAR_DBG("streams_set_dir(*) = 0");
271 return 0;
272}
273
274int streams_get_dir    (int id) {
275 struct roar_stream_server * ss;
276
277 if ( (ss = g_streams[id]) == NULL )
278  return -1;
279
280 return ROAR_STREAM(ss)->dir;
281}
282
283int streams_get_subsys (int id) {
284 struct roar_stream_server * ss;
285
286 if ( (ss = g_streams[id]) == NULL )
287  return -1;
288
289 switch (ROAR_STREAM(ss)->dir) {
290  case ROAR_DIR_PLAY:
291  case ROAR_DIR_RECORD:
292  case ROAR_DIR_MONITOR:
293  case ROAR_DIR_FILTER:
294  case ROAR_DIR_OUTPUT:
295  case ROAR_DIR_BIDIR:
296    return ROAR_SUBSYS_WAVEFORM;
297   break;
298  case ROAR_DIR_MIDI_IN:
299  case ROAR_DIR_MIDI_OUT:
300    return ROAR_SUBSYS_MIDI;
301   break;
302  case ROAR_DIR_LIGHT_IN:
303  case ROAR_DIR_LIGHT_OUT:
304    return ROAR_SUBSYS_LIGHT;
305   break;
306  case ROAR_DIR_RAW_IN:
307  case ROAR_DIR_RAW_OUT:
308    return ROAR_SUBSYS_RAW;
309   break;
310  case ROAR_DIR_THRU:
311    return streams_get_subsys(ROAR_STREAM(ss)->pos_rel_id);
312   break;
313 }
314
315 return -1;
316}
317
318int streams_set_fh     (int id, int fh) {
319 struct roar_stream_server * ss;
320 struct roar_stream        * s;
321 int dir;
322 int nonblock = 1;
323
324 if ( (s = ROAR_STREAM(ss = g_streams[id])) == NULL )
325  return -1;
326
327 ROAR_DBG("streams_set_fh(id=%i): g_streams[id]->id=%i", id, s->id);
328
329 s->fh = fh;
330
331 ROAR_DBG("streams_set_fh(id=%i, fh=%i): driverID=%i", id, fh, ss->driver_id);
332
333 if ( ss->driver_id == -1 && fh != -2 )
334  roar_vio_set_fh(&(ss->vio), fh);
335
336 if ( codecfilter_open(&(ss->codecfilter_inst), &(ss->codecfilter), NULL,
337                  s->info.codec, ss) == -1 ) {
338  return streams_delete(id); // TODO: FIXME: is this correct? shoudn't we return -1 in any case here?
339 }
340
341 if ( fh == -2 ) {
342  ROAR_DBG("streams_set_fh(id=%i, fh=%i) = ?", id, fh);
343  if ( roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_GET_READ_FH, &fh) == -1 ) {
344   fh = -2;
345  } else {
346   ROAR_DBG("streams_set_fh(id=%i, fh=%i) = ?", id, fh);
347   if ( fh < 0 ) {
348    fh = -2;
349   } else {
350    s->fh = fh;
351   }
352  }
353 }
354
355 if ( fh == -1 || fh == -2 ) { // yes, this is valid, indecats full vio!
356  ss->ready = 1;
357  return 0;
358 }
359
360// roar_socket_recvbuf(fh, ROAR_OUTPUT_CALC_OUTBUFSIZE( &(ROAR_STREAM(g_streams[id])->info) )); // set recv buffer to minimum
361
362 dir = ROAR_STREAM(ss)->dir;
363
364 switch (dir) {
365  case ROAR_DIR_MONITOR:
366  case ROAR_DIR_RECORD:
367  case ROAR_DIR_OUTPUT:
368  case ROAR_DIR_MIDI_OUT:
369  case ROAR_DIR_LIGHT_OUT:
370  case ROAR_DIR_RAW_OUT:
371    ROAR_SHUTDOWN(fh, SHUT_RD);
372   break;
373 }
374
375 if ( dir >= ROAR_DIR_DIRIDS )
376  return -1;
377
378 if ( g_config->streams[dir].flags & ROAR_FLAG_SYNC ) {
379  switch (dir) {
380   case ROAR_DIR_BRIDGE:
381   case ROAR_DIR_MIDI_OUT:
382    break;
383   default:
384     nonblock = 0;
385    break;
386  }
387 }
388
389
390 if ( !nonblock ) {
391  ss->ready = 1;
392  return 0;
393 } else {
394  if ( roar_socket_nonblock(fh, ROAR_SOCKET_NONBLOCK) == -1 )
395   return -1;
396
397  ss->ready = 1;
398  return 0;
399 }
400}
401
402int streams_get_fh     (int id) {
403 if ( id < 0 )
404  return -1;
405
406 if ( g_streams[id] == NULL )
407  return -1;
408
409 return ROAR_STREAM(g_streams[id])->fh;
410}
411
412int streams_get    (int id, struct roar_stream_server ** stream) {
413 if ( g_streams[id] == NULL )
414  return -1;
415
416 *stream = g_streams[id];
417
418 return 0;
419}
420
421int streams_set_socktype (int id, int socktype) {
422 if ( g_streams[id] == NULL )
423  return -1;
424
425 g_streams[id]->socktype = socktype;
426
427 return 0;
428}
429
430int streams_get_socktype (int id) {
431 if ( g_streams[id] == NULL )
432  return -1;
433
434 return g_streams[id]->socktype;
435}
436
437int streams_set_primary (int id, int prim) {
438 if ( g_streams[id] == NULL )
439  return -1;
440
441 g_streams[id]->primary = prim;
442
443 return 0;
444}
445
446int streams_mark_primary (int id) {
447 return streams_set_primary(id, 1);
448}
449
450int streams_set_sync     (int id, int sync) {
451 int fh = streams_get_fh(id);
452
453 if ( fh != -1 ) {
454  if ( roar_socket_nonblock(fh, sync ? ROAR_SOCKET_BLOCK : ROAR_SOCKET_NONBLOCK) == -1 )
455   return -1;
456
457#ifdef ROAR_FDATASYNC
458  ROAR_FDATASYNC(fh);
459#endif
460
461  return 0;
462 } else {
463  return roar_vio_nonblock(&(g_streams[id]->vio), sync);
464 }
465}
466
467int streams_set_mmap (int id, int reset) {
468 int use = !reset;
469
470 if ( g_streams[id] == NULL )
471  return -1;
472
473 return roar_vio_ctl(&(g_streams[id]->vio), ROAR_VIO_CTL_SET_UMMAP, &use);
474}
475
476int streams_set_flag     (int id, int flag) {
477 if ( g_streams[id] == NULL )
478  return -1;
479
480 if ( flag & ROAR_FLAG_MMAP )
481  if ( streams_set_mmap(id, 0) == -1 )
482   flag -= ROAR_FLAG_MMAP;
483
484 if ( flag & ROAR_FLAG_PRIMARY ) {
485  streams_set_primary(id, 1);
486  flag -= ROAR_FLAG_PRIMARY;
487 }
488
489 if ( flag & ROAR_FLAG_SYNC ) {
490  switch (ROAR_STREAM(g_streams[id])->dir) {
491   // for this stream types the flag is used in the subsystem:
492   case ROAR_DIR_BRIDGE:
493   case ROAR_DIR_MIDI_OUT:
494    break;
495
496   // normal behavor (vio blocking):
497   default:
498     // the fh is updated as soon as the fh get ready in case the default ask to set sync
499     if ( !g_streams[id]->ready && !(g_config->streams[ROAR_STREAM(g_streams[id])->dir].flags & ROAR_FLAG_SYNC) ) {
500      if ( streams_set_sync(id, 1) == -1 )
501       flag -= ROAR_FLAG_SYNC;
502     }
503  }
504 }
505
506 if ( flag & ROAR_FLAG_HWMIXER ) { // currently not supported -> ignored
507  g_streams[id]->flags |= flag;
508  if ( streams_set_mixer(id) == -1 ) {
509   g_streams[id]->flags -= flag;
510   return -1;
511  }
512 }
513
514 if ( flag & ROAR_FLAG_RECSOURCE ) {
515  if ( streams_recsource_id != -1 ) {
516   if ( streams_reset_flag(streams_recsource_id, ROAR_FLAG_RECSOURCE) == -1 )
517    return -1;
518  }
519
520  streams_recsource_id = id;
521 }
522
523 g_streams[id]->flags |= flag;
524
525#ifdef ROAR_SUPPORT_META
526 if ( flag & ROAR_FLAG_META )
527  stream_meta_finalize(id);
528#endif
529
530 return 0;
531}
532
533int streams_reset_flag   (int id, int flag) {
534 if ( g_streams[id] == NULL )
535  return -1;
536
537 if ( flag & ROAR_FLAG_RECSOURCE )
538  if ( streams_recsource_id == id )
539   streams_recsource_id = -1;
540
541 if ( flag & ROAR_FLAG_MMAP )
542  if ( streams_set_mmap(id, 1) == -1 )
543   flag -= ROAR_FLAG_MMAP;
544
545 if ( flag & ROAR_FLAG_PRIMARY ) {
546  streams_set_primary(id, 0);
547  flag -= ROAR_FLAG_PRIMARY;
548 }
549
550 if ( flag & ROAR_FLAG_SYNC ) {
551  // we refuse to reset the flag on FILTER streams
552  if ( streams_get_dir(id) == ROAR_DIR_FILTER ) {
553//   flags -= ROAR_FLAG_SYNC;
554   return -1;
555  } else {
556   streams_set_sync(id, 0);
557  }
558 }
559
560 g_streams[id]->flags |= flag;
561 g_streams[id]->flags -= flag;
562
563 return 0;
564}
565
566int streams_get_flag     (int id, int flag) {
567 if ( g_streams[id] == NULL )
568  return -1;
569
570 return g_streams[id]->flags & flag ? 1 : 0;
571}
572
573int streams_set_name     (int id, char * name) {
574 char * str;
575
576 if ( g_streams[id] == NULL )
577  return -1;
578
579 if ( (str = strdup(name)) == NULL )
580  return -1;
581
582 if ( g_streams[id]->name != NULL )
583  free(g_streams[id]->name);
584
585 g_streams[id]->name = str;
586
587 return 0;
588}
589
590char * streams_get_name  (int id) {
591 if ( g_streams[id] == NULL )
592  return NULL;
593
594 return g_streams[id]->name;
595}
596
597
598int streams_calc_delay    (int id) {
599 struct roar_stream_server * ss;
600 struct roar_stream        * s;
601 register uint_least32_t d = 0;
602 uint_least32_t t[1];
603 uint64_t       tmp;
604
605 if ( (s = ROAR_STREAM(ss = g_streams[id])) == NULL )
606  return -1;
607
608 if ( ss->codecfilter != -1 ) {
609  if ( codecfilter_delay(ss->codecfilter_inst, ss->codecfilter, t) != -1 )
610   d += *t;
611 }
612
613 if ( ss->vio.ctl != NULL ) {
614  if ( roar_vio_ctl(&(ss->vio), ROAR_VIO_CTL_GET_DELAY, t) != -1 ) { // *t is in byte
615   ROAR_DBG("streams_calc_delay(id=%i): VIO delay in byte: %i", id, *t);
616   tmp = *t;
617   tmp *= 1000000; // musec per sec
618   tmp /= s->info.rate * s->info.channels * (s->info.bits/8);
619   ROAR_DBG("streams_calc_delay(id=%i): VIO delay in musec: %llu", id, tmp);
620
621   d += tmp;
622  }
623 }
624
625 ROAR_DBG("streams_calc_delay(id=%i): delay in musec: %i", id, d);
626
627 ss->delay = d;
628
629 return 0;
630}
631
632int streams_set_mixer    (int id) {
633 struct roar_stream_server * ss;
634 struct roar_stream_server * pmss;
635 int i;
636 int subsys;
637
638 if ( (ss = g_streams[id]) == NULL )
639  return -1;
640
641 if ( streams_get_flag(id, ROAR_FLAG_PASSMIXER) == 1 ) {
642  if ( (subsys = streams_get_subsys(id)) == -1 )
643   return -1;
644
645  for (i = 0; i < ROAR_STREAMS_MAX; i++) {
646   if ( (pmss = g_streams[i]) != NULL ) {
647    if ( streams_get_flag(i, ROAR_FLAG_PASSMIXER) == 1 ) {
648     if ( streams_get_subsys(i) == subsys ) {
649      memcpy(&(pmss->mixer), &(ss->mixer), sizeof(struct roar_mixer_settings));
650
651      // update hwmixers and the like but do not set mixer value recrusivly.
652      streams_reset_flag(i, ROAR_FLAG_PASSMIXER);
653      streams_set_mixer(i);
654      streams_set_flag(i, ROAR_FLAG_PASSMIXER);
655     }
656    }
657   }
658  }
659 }
660
661 if ( !streams_get_flag(id, ROAR_FLAG_HWMIXER) )
662  return 0;
663
664 if ( ss->driver_id == -1 )
665  return 0;
666
667 return driver_set_volume(id, &(ss->mixer));
668}
669
670int streams_ctl          (int id, int_least32_t cmd, void * data) {
671 struct roar_stream_server * ss;
672 int_least32_t comp;
673
674 if ( (ss = g_streams[id]) == NULL )
675  return -1;
676
677 comp = cmd & ROAR_STREAM_CTL_COMPMASK;
678
679 cmd &= ~comp;
680
681 ROAR_DBG("streams_ctl(id=%i, cmd=?, data=%p): comp=0x%.8x, cmd=0x%.4x", id, data, comp, cmd);
682
683 switch (comp) {
684  case ROAR_STREAM_CTL_COMP_BASE:
685   break;
686  case ROAR_STREAM_CTL_COMP_CF:
687    return codecfilter_ctl(ss->codecfilter_inst, ss->codecfilter, cmd, data);
688   break;
689  case ROAR_STREAM_CTL_COMP_DRV:
690   break;
691  default:
692   return -1;
693 }
694
695 return -1;
696}
697
698int streams_get_outputbuffer  (int id, void ** buffer, size_t size) {
699 if ( g_streams[id] == NULL )
700  return -1;
701
702 // output buffer size does never change.
703 if ( g_streams[id]->output != NULL ) {
704  *buffer = g_streams[id]->output;
705  return 0;
706 }
707
708 if ( (g_streams[id]->output = malloc(size)) == NULL ) {
709  ROAR_ERR("streams_get_outputbuffer(*): Can not alloc: %s", strerror(errno));
710  return -1;
711 }
712
713 *buffer = g_streams[id]->output;
714
715 return 0;
716}
717
718int streams_fill_mixbuffer (int id, struct roar_audio_info * info) {
719 // TODO: decide: is this the most complex, hacked, un-understadable,
720 //               un-writeable and even worse: un-readable
721 //               function in the whole project?
722 size_t todo = ROAR_OUTPUT_CALC_OUTBUFSIZE(info);
723 size_t needed = todo;
724 size_t todo_in;
725 size_t len, outlen;
726 size_t mul = 1, div = 1;
727 void * rest = NULL;
728 void * in   = NULL;
729 struct roar_buffer     * buf;
730 struct roar_audio_info * stream_info;
731 struct roar_stream_server * stream = g_streams[id];
732 int is_the_same = 0;
733
734 if ( g_streams[id] == NULL )
735  return -1;
736
737 if ( streams_get_outputbuffer(id, &rest, todo) == -1 ) {
738  return -1;
739 }
740
741 if ( rest == NULL ) {
742  return -1;
743 }
744
745 // set up stream_info
746
747 stream_info = &(ROAR_STREAM(stream)->info);
748
749 // calc todo_in
750 todo_in = ROAR_OUTPUT_CALC_OUTBUFSIZE(stream_info);
751
752 if ( todo_in == 0 ) {
753  ROAR_WARN("streams_fill_mixbuffer(id=%i, info=%p{...}): todo_in == 0, this should not happen!", id, info);
754  return -1;
755 }
756
757 // calc mul and div:
758 mul = todo    / todo_in;
759 div = todo_in / todo;
760
761 if ( mul == 0 ) {
762  mul = 1;
763 } else {
764  div = 1;
765 }
766
767 ROAR_DBG("streams_fill_mixbuffer(*): mul=%i, div=%i", mul, div);
768
769 ROAR_DBG("streams_fill_mixbuffer(*): rest=%p, todo=%i->%i (in->out)", rest, todo_in, todo);
770 // are both (input and output) of same format?
771
772
773 ROAR_DBG("streams_fill_mixbuffer(*): stream_info:");
774 roar_debug_audio_info_print(stream_info);
775 ROAR_DBG("streams_fill_mixbuffer(*): info:");
776 roar_debug_audio_info_print(info);
777
778 is_the_same = stream_info->rate     == info->rate     && stream_info->bits  == info->bits &&
779               stream_info->channels == info->channels && stream_info->codec == info->codec;
780
781 ROAR_DBG("streams_fill_mixbuffer(*): is_the_same=%i", is_the_same);
782
783/* How it works:
784 *
785 * set a counter to the number of samples we need.
786 * loop until we have all samples done or no samples are
787 * left in our input buffer.
788 * If there a no samples left in the input buffer: fill the rest
789 * of the output buffer with zeros.
790 *
791 * The loop:
792 * get a buffer from the input.
793 * if it's bigger than needed, set an offset.
794 * The rest of the data:
795 * 0) convert endianness (codec) from remote to local...
796 * 1) change bits in of the samples
797 * 2) change sample rate
798 * 3) change the nummber of channels
799 * 4) insert into output buffer
800 */
801
802/*
803 // get our first buffer:
804
805 if ( stream_shift_buffer(id, &buf) == -1 ) {
806  return -1;
807 }
808
809 // first test for some basic simple cases...
810
811 if ( buf == NULL ) { // we habe nothing in input queue
812                      // we may memset() our output buffer OR
813                      // just return with -1 so we are going to
814                      // be ignored.
815  return -1;
816 }
817*/
818
819 while (todo) { // main loop
820  ROAR_DBG("streams_fill_mixbuffer(*): looping...");
821  // exit loop if nothing is left, even if we need more data..
822  if ( stream_shift_buffer(id, &buf) == -1 )
823   break;
824  if ( buf == NULL )
825   break;
826
827  // read the data for this loop...
828  roar_buffer_get_data(buf, &in);
829  roar_buffer_get_len(buf, &len);
830
831  ROAR_DBG("streams_fill_mixbuffer(*): len = %i", len);
832
833  if ( len > todo_in ) {
834   roar_buffer_set_offset(buf, todo_in);
835   len = todo_in;
836  } else {
837   roar_buffer_set_len(buf, 0); // queue for deletation
838  }
839
840  // we now have 'len' bytes in 'in'
841
842  // calc how much outlen this has...
843  outlen = (len * mul) / div;
844
845  ROAR_DBG("streams_fill_mixbuffer(*): outlen = %i, buf = %p, len = %i", outlen, in, len);
846
847  if ( is_the_same ) {
848/*
849 * 0) convert endianness (codec) from remote to local...
850 * 1) change bits in of the samples
851 * 2) change sample rate
852 * 3) change the nummber of channels
853   \\==> skiping,...
854 */
855   // * 4) insert into output buffer
856   ROAR_DBG("streams_fill_mixbuffer(*): memcpy: in->rest: %p -> %p", in, rest);
857   if ( memcpy(rest, in, len) != rest ) {
858    ROAR_ERR("streams_fill_mixbuffer(*): memcpy returned invalid pointer.");
859   }
860
861  } else {
862
863/*
864   // * 0) convert endianness (codec) from remote to local...
865   if ( stream_info->codec != info->codec ) {
866    // we neet to convert...
867    return -1;
868   }
869
870   // * 1) change bits in of the samples
871   if ( stream_info->bits != info->bits ) {
872    return -1;
873   }
874
875   // * 2) change sample rate
876   if ( stream_info->rate != info->rate ) {
877    return -1;
878   }
879
880   // * 3) change the nummber of channels
881   if ( stream_info->channels != info->channels ) {
882    return -1;
883   }
884
885   // * 4) insert into output buffer
886*/
887  // hey! we have roar_conv() :)
888
889  if ( roar_conv(rest, in, 8*len / stream_info->bits, stream_info, info) == -1 )
890   return -1;
891  }
892
893  if ( !streams_get_flag(id, ROAR_FLAG_HWMIXER) ) {
894   if ( change_vol(rest, info->bits, rest, 8*outlen / info->bits, info->channels, &(stream->mixer)) == -1 )
895    return -1;
896  }
897
898  // we habe outlen bytes more...
899  todo    -= outlen;
900  rest    += outlen;
901  todo_in -= len;
902
903  roar_buffer_get_len(buf, &len);
904  ROAR_DBG("streams_fill_mixbuffer(*): New length of buffer %p is %i", buf, len);
905  if ( len == 0 ) {
906   roar_buffer_delete(buf, NULL);
907  } else {
908   stream_unshift_buffer(id, buf);
909  }
910 }
911
912//len = 0;
913//roar_buffer_get_len(buf, &len);
914
915/*
916 if ( len > 0 ) // we still have some data in this buffer, re-inserting it to the input buffers...
917  stream_unshift_buffer(id, buf);
918 else
919  buffer_delete(buf, NULL);
920*/
921
922 ROAR_STREAM(g_streams[id])->pos =
923      ROAR_MATH_OVERFLOW_ADD(ROAR_STREAM(g_streams[id])->pos,
924          ROAR_OUTPUT_CALC_OUTBUFSAMP(info, needed-todo));
925 //ROAR_WARN("stream=%i, pos=%u", id, ((struct roar_stream*)g_streams[id])->pos);
926
927 if ( todo > 0 ) { // zeroize the rest of the buffer
928  memset(rest, 0, todo);
929
930  if ( todo != ROAR_OUTPUT_CALC_OUTBUFSIZE(info) ) {
931   if ( g_streams[id]->is_new ) {
932    stream->pre_underruns++;
933   } else {
934    ROAR_WARN("streams_fill_mixbuffer(*): Underrun in stream: %u bytes missing, filling with zeros", (unsigned int)todo);
935    stream->post_underruns++;
936   }
937
938   stream->is_new = 0;
939  }
940 } else {
941  stream->is_new = 0;
942 }
943
944 return 0;
945}
946
947int streams_fill_mixbuffer2 (int id, struct roar_audio_info * info) {
948 size_t   outlen = ROAR_OUTPUT_CALC_OUTBUFSIZE(info);
949 void   * outdata;
950 size_t   inlen;
951 size_t   inlen_got;
952 void   * indata = NULL;
953 size_t   buflen;
954 void   * bufdata = NULL;
955 struct roar_buffer * bufbuf = NULL;
956 int      is_the_same = 0;
957 struct roar_audio_info    * stream_info;
958 struct roar_stream        * s;
959 struct roar_stream_server * ss;
960
961 if ( (s = ROAR_STREAM(ss = g_streams[id])) == NULL )
962  return -1;
963
964 // set up stream_info
965 stream_info = &(s->info);
966
967 // calc todo_in
968 inlen = ROAR_OUTPUT_CALC_OUTBUFSIZE(stream_info);
969
970 buflen = ROAR_OUTPUT_CALC_OUTBUFSIZE_MAX(info, stream_info);
971
972 if ( inlen == 0 ) {
973  ROAR_WARN("streams_fill_mixbuffer2(id=%i, info=%p{...}): inlen == 0, this should not happen!", id, info);
974  return -1;
975 }
976
977 if ( streams_get_outputbuffer(id, &outdata, outlen) == -1 ) {
978  return -1;
979 }
980
981 if ( outdata == NULL ) {
982  return -1;
983 }
984
985 ROAR_DBG("streams_fill_mixbuffer2(*): outdata=%p, len=%i->%i (in->out)", outdata, inlen, outlen);
986
987 is_the_same = stream_info->rate     == info->rate     && stream_info->bits  == info->bits &&
988               stream_info->channels == info->channels && stream_info->codec == info->codec;
989
990 ROAR_DBG("streams_fill_mixbuffer2(*): is_the_same=%i", is_the_same);
991
992 if ( !is_the_same && buflen > outlen ) {
993/*
994  // this is not supported at the moment
995  memset(outdata, 0, outlen);
996  return -1;
997*/
998
999  if ( roar_buffer_new(&bufbuf, buflen) == -1 )
1000   return -1;
1001
1002  if ( roar_buffer_get_data(bufbuf, &bufdata) == -1 )
1003   return -1;
1004  indata  = bufdata;
1005 } else {
1006  indata  = outdata;
1007  bufdata = outdata;
1008 }
1009
1010 inlen_got = inlen;
1011
1012 ROAR_DBG("streams_fill_mixbuffer2(id=%i, info=...): inlen_got=%u", id, inlen_got);
1013
1014 if ( stream_shift_out_buffer(id, indata, &inlen_got) == -1 ) {
1015  if ( ss->is_new ) {
1016   ss->pre_underruns++;
1017  } else {
1018   ROAR_WARN("streams_fill_mixbuffer2(id=%i, info=...): underrun in stream", id);
1019   ss->post_underruns++;
1020  }
1021  memset(outdata, 0, outlen);
1022  return 0;
1023 }
1024
1025 ROAR_DBG("streams_fill_mixbuffer2(id=%i, info=...): inlen_got=%u", id, inlen_got);
1026
1027 if ( ss->is_new ) {
1028  ROAR_WARN("streams_fill_mixbuffer2(id=%i, info=...): stream state: new->old", id);
1029 }
1030
1031 ss->is_new = 0;
1032
1033 if ( is_the_same ) {
1034  if ( indata != outdata )
1035   memcpy(outdata, indata, inlen);
1036
1037  if ( inlen < outlen )
1038   memset(outdata+inlen, 0, outlen-inlen);
1039 } else {
1040//  if ( roar_conv(outdata, indata, (8*inlen_got*info->rate)/(stream_info->rate * stream_info->bits), stream_info, info) == -1 ) {
1041  ROAR_DBG("streams_fill_mixbuffer2(*): CALL roar_conv2(*)...");
1042  if ( roar_conv2(bufdata, indata, inlen, stream_info, info, buflen) == -1 ) {
1043   if ( bufbuf != NULL )
1044    roar_buffer_free(bufbuf);
1045   return -1;
1046  }
1047
1048//  memset(outdata, 0, outlen);
1049 }
1050
1051 if ( bufbuf != NULL ) {
1052  memcpy(outdata, bufdata, outlen);
1053  roar_buffer_free(bufbuf);
1054 }
1055
1056 if ( !streams_get_flag(id, ROAR_FLAG_HWMIXER) && !streams_get_flag(id, ROAR_FLAG_PASSMIXER) ) {
1057  if ( change_vol(outdata, info->bits, outdata, 8*outlen / info->bits, info->channels, &(ss->mixer)) == -1 )
1058   return -1;
1059 }
1060
1061 if ( streams_get_flag(id, ROAR_FLAG_ANTIECHO) ) {
1062  // we can ignore errors here:
1063  if ( stream_outputbuffer_request(id, &bufbuf, buflen) == 0 ) {
1064   if ( roar_buffer_get_data(bufbuf, &bufdata) != -1 )
1065    memcpy(bufdata, outdata, outlen);
1066  }
1067 }
1068
1069
1070 return 0;
1071}
1072
1073
1074int streams_get_mixbuffers (void *** bufferlist, struct roar_audio_info * info, unsigned int pos) {
1075 static void * bufs[ROAR_STREAMS_MAX+1];
1076 int i;
1077 int have = 0;
1078
1079 for (i = 0; i < ROAR_STREAMS_MAX; i++) {
1080  if ( g_streams[i] != NULL ) {
1081   if ( ROAR_STREAM(g_streams[i])->dir != ROAR_DIR_PLAY && ROAR_STREAM(g_streams[i])->dir != ROAR_DIR_BIDIR )
1082    continue;
1083
1084   if ( streams_get_outputbuffer(i, &bufs[have], ROAR_OUTPUT_CALC_OUTBUFSIZE(info)) == -1 ) {
1085    ROAR_ERR("streams_get_mixbuffer(*): Can not alloc output buffer for stream %i, BAD!", i);
1086    ROAR_ERR("streams_get_mixbuffer(*): Ignoring stream for this round.");
1087    continue;
1088   }
1089   if ( streams_fill_mixbuffer2(i, info) == -1 ) {
1090    ROAR_ERR("streams_get_mixbuffer(*): Can not fill output buffer for stream %i, this should not happen", i);
1091    continue;
1092   }
1093
1094//   printf("D: bufs[have=%i] = %p\n", have, bufs[have]);
1095
1096   ROAR_DBG("streams_get_mixbuffers(*):  bufs[have] = %p", bufs[have]);
1097   ROAR_DBG("streams_get_mixbuffers(*): *bufs[have] = 0x%08x...", *(uint32_t*)bufs[have]);
1098
1099   if ( !streams_get_flag(i, ROAR_FLAG_MUTE) )
1100    have++; // we have a new stream!
1101  }
1102 }
1103
1104 bufs[have] = NULL;
1105 //printf("D: bufs[have=%i] = %p\n", have, bufs[have]);
1106
1107 ROAR_DBG("streams_get_mixbuffers(*): have = %i", have);
1108
1109 *bufferlist = bufs;
1110 return have;
1111}
1112
1113
1114int stream_add_buffer  (int id, struct roar_buffer * buf) {
1115 ROAR_DBG("stream_add_buffer(id=%i, buf=%p) = ?", id, buf);
1116
1117 if ( g_streams[id] == NULL )
1118  return -1;
1119
1120 if ( g_streams[id]->buffer == NULL ) {
1121  g_streams[id]->buffer = buf;
1122  ROAR_DBG("stream_add_buffer(id=%i, buf=%p) = 0", id, buf);
1123  return 0;
1124 }
1125
1126 ROAR_DBG("stream_add_buffer(id=%i, buf=%p) = ?", id, buf);
1127 return roar_buffer_add(g_streams[id]->buffer, buf);
1128}
1129
1130int stream_shift_out_buffer   (int id, void * data, size_t * len) {
1131 if ( g_streams[id] == NULL )
1132  return -1;
1133
1134 if ( g_streams[id]->buffer == NULL )
1135  return -1;
1136
1137 return roar_buffer_shift_out(&(g_streams[id]->buffer), data, len);
1138}
1139
1140int stream_shift_buffer   (int id, struct roar_buffer ** buf) {
1141 struct roar_buffer * next;
1142
1143 if ( g_streams[id] == NULL )
1144  return -1;
1145
1146 if ( g_streams[id]->buffer == NULL ) {
1147  *buf = NULL;
1148  return 0;
1149 }
1150
1151 roar_buffer_get_next(g_streams[id]->buffer, &next);
1152
1153 *buf                  = g_streams[id]->buffer;
1154 g_streams[id]->buffer = next;
1155
1156 return 0;
1157}
1158int stream_unshift_buffer (int id, struct roar_buffer *  buf) {
1159 if ( g_streams[id] == NULL )
1160  return -1;
1161
1162 if ( g_streams[id]->buffer == NULL ) {
1163  g_streams[id]->buffer = buf;
1164  return 0;
1165 }
1166
1167 buf->next = NULL;
1168
1169 roar_buffer_add(buf, g_streams[id]->buffer);
1170
1171 g_streams[id]->buffer = buf;
1172
1173 return 0;
1174}
1175
1176int stream_outputbuffer_request(int id, struct roar_buffer ** buf, size_t len) {
1177 register struct roar_stream_server *  ss;
1178 size_t buflen;
1179 void * bufdata;
1180 int ret;
1181
1182 if ( (ss = g_streams[id]) == NULL )
1183  return -1;
1184
1185 if ( buf != NULL ) /* just be be sure */
1186  *buf = NULL;
1187
1188 if ( ss->outputbuffer != NULL ) {
1189  if ( roar_buffer_get_len(ss->outputbuffer, &buflen) == 0 ) {
1190   if ( buflen == len ) {
1191    if ( buf != NULL )
1192     *buf = ss->outputbuffer;
1193    return 0;
1194   } else if ( buflen > len ) {
1195    if ( roar_buffer_set_len(ss->outputbuffer, len) == 0 ) {
1196     if ( buf != NULL )
1197      *buf = ss->outputbuffer;
1198     return 0;
1199    }
1200   }
1201  }
1202
1203  // if the buffer is not suitable:
1204
1205  ret = roar_buffer_free(ss->outputbuffer);
1206  ss->outputbuffer = NULL;
1207  if ( ret == -1 )
1208   return ret;
1209 }
1210
1211 if ( roar_buffer_new(&(ss->outputbuffer), len) == -1 )
1212  return -1;
1213
1214 if ( roar_buffer_get_data(ss->outputbuffer, &bufdata) == -1 ) {
1215  roar_buffer_free(ss->outputbuffer);
1216  ss->outputbuffer = NULL;
1217  return -1;
1218 }
1219
1220 memset(bufdata, 0, len);
1221
1222 if ( buf != NULL )
1223  *buf = ss->outputbuffer;
1224
1225 return 0;
1226}
1227
1228int stream_outputbuffer_destroy(int id) {
1229 int ret;
1230 register struct roar_stream_server *  ss;
1231
1232 if ( (ss = g_streams[id]) == NULL )
1233  return -1;
1234
1235 if ( ss->outputbuffer != NULL ) {
1236  ret = roar_buffer_free(ss->outputbuffer);
1237  ss->outputbuffer = NULL;
1238  return ret;
1239 }
1240
1241 return 0;
1242}
1243
1244int streams_check  (int id) {
1245 int fh;
1246 ssize_t req, realreq, done;
1247 struct roar_stream        *   s;
1248 struct roar_stream_server *  ss;
1249 struct roar_buffer        *   b;
1250 char                      * buf;
1251// char                        tmp;
1252
1253 if ( g_streams[id] == NULL )
1254  return -1;
1255
1256 ROAR_DBG("streams_check(id=%i) = ?", id);
1257
1258 s = ROAR_STREAM(ss = g_streams[id]);
1259
1260 if ( (fh = s->fh) == -1 )
1261  return 0;
1262
1263 if ( streams_get_flag(id, ROAR_FLAG_PAUSE) )
1264  return 0;
1265
1266 switch (s->dir) {
1267  case ROAR_DIR_LIGHT_IN:
1268    return light_check_stream(id);
1269   break;
1270  case ROAR_DIR_MIDI_IN:
1271    return midi_check_stream(id);
1272   break;
1273  case ROAR_DIR_RAW_IN:
1274    return raw_check_stream(id);
1275   break;
1276  case ROAR_DIR_PLAY:
1277  case ROAR_DIR_BIDIR:
1278   break;
1279  default:
1280/*
1281    ROAR_WARN("streams_check(id=%i): Read event on non input stream of type/dir %s", id, roar_dir2str(s->dir));
1282    errno = 0;
1283    req = stream_vio_s_read(ss, &tmp, 1);
1284    ROAR_DBG("streams_check(id=%i): stream_vio_s_read(ss, &tmp, 1) = %li // errno=%s(%i)", id, req, strerror(errno), errno);
1285    if ( req == 1 ) {
1286     ROAR_ERR("streams_check(id=%i): Client violates protocol, got one byte of data on output stream, kicking stream");
1287     streams_delete(id);
1288     return -1;
1289    }
1290*/
1291    return 0;
1292   break;
1293 }
1294
1295 ROAR_DBG("streams_check(id=%i): fh = %i", id, fh);
1296
1297/*
1298 ROAR_DBG("streams_check(id=%i): ROAR_OUTPUT_BUFFER_SAMPLES=%i, s->info.channels=%i, s->info.bits=%i, s->info.rat=%i, g_sa->rate=%i", id, ROAR_OUTPUT_BUFFER_SAMPLES, s->info.channels, s->info.bits, s->info.rate, g_sa->rate);
1299*/
1300
1301 req  = ROAR_OUTPUT_CALC_OUTBUFSIZE(&(s->info)); // optimal size
1302// req  = ROAR_OUTPUT_BUFFER_SAMPLES * s->info.channels * (s->info.bits / 8) * ((float)s->info.rate/g_sa->rate);
1303 req += ss->need_extra; // bytes left we sould get....
1304
1305 ROAR_DBG("streams_check(id=%i): asking for %i bytes", id, req);
1306
1307 if ( roar_buffer_new(&b, req) == -1 ) {
1308  ROAR_ERR("streams_check(*): Can not alloc buffer space!");
1309  ROAR_DBG("streams_check(*) = -1");
1310  return -1;
1311 }
1312
1313 roar_buffer_get_data(b, (void **)&buf);
1314
1315 ROAR_DBG("streams_check(id=%i): buffer is up and ready ;)", id);
1316 ROAR_DBG("streams_check(id=%i): asking for %i bytes", id, req);
1317
1318 if ( ss->codecfilter == -1 ) {
1319  realreq = req;
1320/*
1321  req = read(fh, buf, req);
1322  if ( req < realreq ) { // we can do this as the stream is in nonblocking mode!
1323   if ( (realreq = read(fh, buf+req, realreq-req)) > 0 )
1324    req += realreq;
1325  }
1326*/
1327  done = 0;
1328  while (req > 0 && done != realreq) {
1329   if ( (req = stream_vio_s_read(ss, buf+done, realreq-done)) > 0 )
1330    done += req;
1331  }
1332  req = done;
1333
1334  roar_buffer_get_data(b, (void **)&buf);
1335 } else {
1336  req = codecfilter_read(ss->codecfilter_inst, ss->codecfilter, buf, req);
1337 }
1338
1339 if ( req > 0 ) {
1340  ROAR_DBG("streams_check(id=%i): got %i bytes", id, req);
1341
1342  roar_buffer_set_len(b, req);
1343
1344  if ( stream_add_buffer(id, b) != -1 )
1345   return 0;
1346
1347  ROAR_ERR("streams_check(id=%i): something is wrong, could not add buffer to stream!", id);
1348  roar_buffer_free(b);
1349 } else {
1350  ROAR_DBG("streams_check(id=%i): read() = %i // errno: %s", id, req, strerror(errno));
1351#ifdef ROAR_HAVE_LIBVORBISFILE
1352  if ( errno != EAGAIN && errno != ESPIPE ) { // libvorbis file trys to seek a bit ofen :)
1353#else
1354  if ( errno != EAGAIN ) {
1355#endif
1356   ROAR_DBG("streams_check(id=%i): EOF!", id);
1357   streams_delete(id);
1358   ROAR_DBG("streams_check(id=%i) = 0", id);
1359  }
1360  roar_buffer_free(b);
1361  return 0;
1362 }
1363
1364
1365 ROAR_DBG("streams_check(id=%i) = -1", id);
1366 return -1;
1367}
1368
1369
1370#define _return(x) return (x)
1371int streams_send_mon   (int id) {
1372// int fh;
1373 struct roar_stream        *   s;
1374 struct roar_stream_server *  ss;
1375 struct roar_buffer        *  bufbuf = NULL;
1376 struct roar_remove_state     removalstate;
1377 void  * ip;
1378 void  * obuf;
1379 int     olen;
1380 int     is_the_same     = 1;
1381 int     is_vol_eq       = 1;
1382 int     antiecho        = 0;
1383 ssize_t ret;
1384
1385 if ( g_streams[id] == NULL )
1386  return -1;
1387
1388 ROAR_DBG("streams_send_mon(id=%i) = ?", id);
1389
1390 s = ROAR_STREAM((ss = g_streams[id]));
1391
1392/*
1393 if ( (fh = s->fh) == -1 )
1394  return 0;
1395*/
1396
1397 if ( !ss->ready )
1398  return 0;
1399
1400 if ( streams_get_flag(id, ROAR_FLAG_PAUSE) )
1401  return 0;
1402
1403 switch (s->dir) {
1404  case ROAR_DIR_LIGHT_OUT:
1405    return light_send_stream(id);
1406   break;
1407  case ROAR_DIR_MIDI_OUT:
1408    return midi_send_stream(id);
1409   break;
1410  case ROAR_DIR_OUTPUT:
1411    if ( g_standby )
1412     return 0;
1413  case ROAR_DIR_MONITOR:
1414  case ROAR_DIR_BIDIR:
1415   break;
1416
1417  default:
1418    return 0;
1419   break;
1420 }
1421
1422
1423 ROAR_DBG("streams_send_mon(id=%i): fh = %i", id, s->fh);
1424
1425 if ( s->info.channels != g_sa->channels || s->info.bits  != g_sa->bits ||
1426      s->info.rate     != g_sa->rate     || s->info.codec != g_sa->codec  )
1427  is_the_same = 0;
1428
1429 if ( !streams_get_flag(id, ROAR_FLAG_HWMIXER) ) {
1430  is_vol_eq = need_vol_change(g_sa->channels, &(ss->mixer)) ? 0 : 1;
1431 }
1432
1433 if ( streams_get_flag(id, ROAR_FLAG_ANTIECHO) )
1434  antiecho = 1;
1435
1436 if ( !is_the_same || !is_vol_eq || antiecho ) {
1437  olen = ROAR_OUTPUT_CALC_OUTBUFSIZE(&(s->info)); // we hope g_output_buffer_len
1438                                                  // is ROAR_OUTPUT_CALC_OUTBUFSIZE(g_sa) here
1439  if ( stream_outputbuffer_request(id, &bufbuf, ROAR_OUTPUT_CALC_OUTBUFSIZE_MAX(&(s->info), g_sa)) == -1 )
1440   return -1;
1441
1442  if ( roar_buffer_get_data(bufbuf, &obuf) == -1 ) {
1443   _return(-1);
1444  }
1445
1446  ROAR_DBG("streams_send_mon(id=%i): obuf=%p, olen=%i", id, obuf, olen);
1447 } else {
1448  obuf = g_output_buffer;
1449  olen = g_output_buffer_len;
1450 }
1451
1452 ip = g_output_buffer;
1453
1454 if ( antiecho ) {
1455  ROAR_DBG("streams_send_mon(id=%i): antiecho=%i", id, antiecho);
1456  if ( roar_remove_init(&removalstate) == -1 ) {
1457   _return(-1);
1458  }
1459
1460  ROAR_DBG("streams_send_mon(id=%i): antiecho=%i", id, antiecho);
1461  if ( roar_remove_so(obuf, ip, ROAR_OUTPUT_BUFFER_SAMPLES*g_sa->channels, g_sa->bits, &removalstate) == -1 ) {
1462   ROAR_DBG("streams_send_mon(id=%i): anti echo failed", id);
1463   _return(-1);
1464  }
1465  ROAR_DBG("streams_send_mon(id=%i): antiecho=%i", id, antiecho);
1466 }
1467
1468 if ( !is_vol_eq ) {
1469  if ( change_vol(obuf, g_sa->bits, ip, ROAR_OUTPUT_BUFFER_SAMPLES*g_sa->channels, g_sa->channels, &(ss->mixer)) == -1 ) {
1470   _return(-1);
1471  }
1472
1473  ip = obuf;
1474 }
1475
1476 if ( !is_the_same ) {
1477  if ( roar_conv(obuf, ip, ROAR_OUTPUT_BUFFER_SAMPLES*g_sa->channels, g_sa, &(s->info)) == -1 ) {
1478   _return(-1);
1479  }
1480 }
1481
1482 errno = 0;
1483
1484 if ( ss->codecfilter == -1 ) {
1485  ROAR_DBG("streams_send_mon(id=%i): not a CF stream", id);
1486  if ( s->fh == -1 && roar_vio_get_fh(&(ss->vio)) == -1 ) {
1487   _return(0);
1488  }
1489
1490  if ( (ret = stream_vio_s_write(ss, obuf, olen)) == olen ) {
1491   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), olen)*s->info.channels);
1492   _return(0);
1493  }
1494
1495  if ( ret > 0 && errno == 0 ) {
1496   ROAR_WARN("streams_send_mon(id=%i): Overrun in stream: wrote %i of %i bytes, %i bytes missing", id, (int)ret, olen, olen-(int)ret);
1497   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), ret)*s->info.channels);
1498   _return(0);
1499  }
1500 } else {
1501  errno = 0;
1502  if ( codecfilter_write(ss->codecfilter_inst, ss->codecfilter, obuf, olen)
1503            == olen ) {
1504   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), olen)*s->info.channels);
1505   _return(0);
1506  } else { // we cann't retry on codec filetered streams
1507   if ( errno != EAGAIN ) {
1508    streams_delete(id);
1509    _return(-1);
1510   }
1511  }
1512 }
1513
1514 if ( errno == EAGAIN ) {
1515  // ok, the client blocks for a moment, we try to sleep a bit an retry in the hope not to
1516  // make any gapes in any output because of this
1517
1518#ifdef ROAR_HAVE_USLEEP
1519  usleep(100); // 0.1ms
1520#endif
1521
1522  if ( stream_vio_s_write(ss, obuf, olen) == olen ) {
1523   s->pos = ROAR_MATH_OVERFLOW_ADD(s->pos, ROAR_OUTPUT_CALC_OUTBUFSAMP(&(s->info), olen)*s->info.channels);
1524   _return(0);
1525  } else if ( errno == EAGAIN ) {
1526   ROAR_WARN("streams_send_mon(id=%i): Can not send data to client: %s", id, strerror(errno));
1527   _return(0);
1528  }
1529 }
1530
1531 // ug... error... delete stream!
1532
1533 streams_delete(id);
1534
1535 _return(-1);
1536}
1537#undef _return
1538
1539int streams_send_filter(int id) {
1540 int fh;
1541 int have = 0;
1542 int len;
1543 struct roar_stream        *   s;
1544 struct roar_stream_server *  ss;
1545
1546 if ( g_streams[id] == NULL )
1547  return -1;
1548
1549 ROAR_DBG("streams_send_filter(id=%i) = ?", id);
1550
1551 s = ROAR_STREAM(ss = g_streams[id]);
1552
1553 if ( (fh = s->fh) == -1 )
1554  return 0;
1555
1556 if ( s->dir != ROAR_DIR_FILTER )
1557  return 0;
1558
1559 if ( streams_get_flag(id, ROAR_FLAG_PAUSE) )
1560  return 0;
1561
1562
1563 ROAR_DBG("streams_send_filter(id=%i): fh = %i", id, fh);
1564
1565 if ( stream_vio_s_write(ss, g_output_buffer, g_output_buffer_len) == g_output_buffer_len ) {
1566  while ( have < g_output_buffer_len ) {
1567   if ( (len = stream_vio_s_read(ss, g_output_buffer+have, g_output_buffer_len-have)) < 1 ) {
1568    streams_delete(id);
1569    return -1;
1570   }
1571   have += len;
1572  }
1573  return 0;
1574 }
1575
1576 // ug... error... delete stream!
1577
1578 streams_delete(id);
1579
1580 return -1;
1581}
1582
1583
1584// VIO:
1585
1586ssize_t stream_vio_read (int stream, void *buf, size_t count) {
1587 struct roar_stream_server * s = g_streams[stream];
1588
1589 if ( !s )
1590  return -1;
1591
1592 return stream_vio_s_read(s, buf, count);
1593}
1594
1595ssize_t stream_vio_write(int stream, void *buf, size_t count) {
1596 struct roar_stream_server * s = g_streams[stream];
1597
1598 if ( !s )
1599  return -1;
1600
1601 return stream_vio_s_write(s, buf, count);
1602}
1603
1604
1605ssize_t stream_vio_s_read (struct roar_stream_server * stream, void *buf, size_t count) {
1606 void    * orig_buf = buf;
1607  size_t   len      =  0;
1608 ssize_t   r        = -1;
1609 int       i;
1610
1611 errno = 0;
1612
1613 if ( !stream )
1614  return -1;
1615
1616 //roar_vio_set_fh(&(stream->vio), ROAR_STREAM(stream)->fh);
1617
1618 if ( ! stream->vio.read )
1619  return -1;
1620
1621 while ( (r = roar_vio_read(&(stream->vio), buf, count)) > 0 ) {
1622  len   += r;
1623  buf   += r;
1624  count -= r;
1625  if ( count == 0 )
1626   break;
1627 }
1628
1629 if ( len == 0 && r == -1 )
1630  return -1;
1631
1632 if ( streams_thru_num )
1633  for (i = 0; i < ROAR_STREAMS_MAX; i++)
1634   if ( g_streams[i] != NULL && ROAR_STREAM(g_streams[i])->pos_rel_id == ROAR_STREAM(stream)->id )
1635    if ( ROAR_STREAM(g_streams[i])->dir == ROAR_DIR_THRU )
1636     if ( g_streams[i]->ready )
1637      if ( stream_vio_write(i, orig_buf, len) != len )
1638       streams_delete(i);
1639
1640 return len;
1641}
1642
1643ssize_t stream_vio_s_write(struct roar_stream_server * stream, void *buf, size_t count) {
1644 int i;
1645
1646 errno = 0;
1647
1648 if ( !stream )
1649  return -1;
1650
1651/*
1652 if ( roar_vio_get_fh(&(stream->vio)) == -1 && ROAR_STREAM(stream)->fh != -1 )
1653  roar_vio_set_fh(&(stream->vio), ROAR_STREAM(stream)->fh);
1654*/
1655
1656// ROAR_WARN("stream_vio_s_write(*): writing...");
1657
1658 if ( streams_thru_num )
1659  for (i = 0; i < ROAR_STREAMS_MAX; i++)
1660   if ( g_streams[i] != NULL && ROAR_STREAM(g_streams[i])->pos_rel_id == ROAR_STREAM(stream)->id )
1661    if ( ROAR_STREAM(g_streams[i])->dir == ROAR_DIR_THRU )
1662     if ( g_streams[i]->ready )
1663      if ( stream_vio_write(i, buf, count) != count )
1664       streams_delete(i);
1665
1666 return roar_vio_write(&(stream->vio), buf, count);
1667}
1668
1669//ll
Note: See TracBrowser for help on using the repository browser.