Displaying 4 results from an estimated 4 matches for "shout_send_data".
2004 Aug 06
0
iceS 0.2.2 bug?
...nd this time it crashed much
earlier in the playlist. my .mp3s check out ok using mp3_check, so i
dont think there's any file corruption, and i have to conclude maybe
there's a bug in icesS-0.2.2.
running the corefile thru gdb, i see that we've died here:
(gdb) where
#0 0x10018814 in shout_send_data (self=0x100c12c8, buff=0x7fffe0e8 "\212è",
len=1) at shout.c:180
#1 0x100128fc in stream_send_data (stream=0x100c12c8, buf=0x7fffe0e8 "\212è",
len=1) at stream.c:339
#2 0x1001260c in stream_send (source=0x7ffff538) at stream.c:213
#3 0x10012458 in ices_stream_loop (...
2004 Aug 06
1
ices and VBR mp3s?
...ices_config.streams; stream; stream = stream->next)
- if (stream->reencode && (!source->read ||
- (source->bitrate != stream->bitrate))) {
+ if (stream->reencode)
+{
len = ices_reencode_flush (stream, obuf, sizeof (obuf));
if (len > 0)
rc = shout_send_data (&stream->conn, obuf, len);
--- CUT HERE ---
--- >8 ----
List archives: http://www.xiph.org/archives/
icecast project homepage: http://www.icecast.org/
To unsubscribe from this list, send a message to 'icecast-request@xiph.org'
containing only the word 'unsubscribe' in t...
2001 Mar 04
1
streaming Vorbis: trials & errors with Icecast 2
Greetings:
Okay, here's where I'm at so far.
Icecast 2 builds without problems. I edit the icecast.xml config file
as seen in the server output below:
[root@localhost icecast]# icecast -c conf/icecast.xml
<?xml version="1.0"?>
<icecast>
<location>DLP_House_Of_Sound</location>
<admin>dlphilp@bright.net</admin>
<limits>
2004 Aug 06
4
Adventures with icecast2
...printf("Connected to server...\n");
total = 0;
while (1) {
read = fread(buff, 1, 4096, stdin);
total = total + read;
if (read > 0) {
ret = shout_send_data(&conn, buff, read);
if (!ret) {
printf("DEBUG: Send error: %i...\n", conn.error);
break;
}
} else {...