search for: fallback_sourc

Displaying 3 results from an estimated 3 matches for "fallback_sourc".

Did you mean: fallback_source
2004 Aug 06
2
fallback source give up and returns to original source
On Sat, 2004-01-17 at 19:31, iceuse@kezako.net wrote: > Thanks, > Karl, do you plan to integrate this in your icecast-kh release? The idea is to put the the changes I've done into CVS. That way you get the best of both worlds, there's nothing conflicting AFAIK. karl. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage:
2004 Aug 06
0
fallback source give up and returns to original source
...to integrate them in your release, but also I'm not sure about locking or not the main source before moving the clients : if(source->fallback_override && source->fallback_mount) { /* get fallback source */ avl_tree_rlock (global.source_tree); source_t *fallback_source = source_find_mount (source->fallback_mount); avl_tree_unlock (global.source_tree); if (fallback_source) { INFO2 ("passing %d listeners to %s", fallback_source->mount,source->listeners ); /* Do we need to lock the current source? */...
2004 Aug 06
0
[RFC] RTP support
...g) { + int rtp_socket; + struct sockaddr_in rtp_sin; + unsigned char on=1; + char rtp_buf[RTP_PKT_SIZE]; + int rtp_done,rtp_amount; + struct timeval rtp_tv; + unsigned long rtp_timestamp=random(); /* random timestamp */ + source_t *source = (source_t *)arg; source_t *fallback_source; char buffer[4096]; @@ -224,6 +269,30 @@ } #endif + /* RTP diffusion initialization, if asked for */ + if (config->rtp_ip && (rtp_socket = socket(PF_INET,SOCK_DGRAM,0))>=0) { + rtp_sin.sin_addr.s_addr = htonl(config->rtp_ip); + rtp_sin.sin_fami...