search for: http_transport

Displaying 7 results from an estimated 7 matches for "http_transport".

2002 Jan 02
2
macosx (lots of little changes)
...thread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); + pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &dummy_o); } <p>I don't like being required to go get libcurl (needs a teeny bit of autoconf tweaking to add -DNO_CURL as needed (there is already a check for -lcurl)) --- ogg123/http_transport.c.orig Wed Jan 2 01:28:23 2002 +++ ogg123/http_transport.c Tue Jan 1 15:37:18 2002 @@ -1,3 +1,4 @@ +#ifndef NO_CURL /******************************************************************** * * * THIS FILE IS PART OF...
2002 Jan 02
2
macosx (lots of little changes)
...thread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL); + pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &dummy_o); } <p>I don't like being required to go get libcurl (needs a teeny bit of autoconf tweaking to add -DNO_CURL as needed (there is already a check for -lcurl)) --- ogg123/http_transport.c.orig Wed Jan 2 01:28:23 2002 +++ ogg123/http_transport.c Tue Jan 1 15:37:18 2002 @@ -1,3 +1,4 @@ +#ifndef NO_CURL /******************************************************************** * * * THIS FILE IS PART OF...
2003 Dec 11
1
Problems building vorbis tools 1.0.1
...looking for libogg.la in the wrong path) but creating a symlink to /usr/local/lib/libogg.la in /usr/lib/ helped. :) having solved this, I get a new error: --- gcc -O20 -ffast-math -fsigned-char -o ogg123 audio.o buffer.o callbacks.o cfgfile_options.o cmdline_options.o file_transport.o format.o http_transport.o ogg123.o oggvorbis_format.o playlist.o status.o transport.o vorbis_comments.o flac_format.o easyflac.o speex_format.o ../share/libutf8.a ../share/libgetopt.a /usr/local/lib/libvorbisfile.so /usr/local/lib/libvorbis.so /usr/local/lib/libao.so -lnsl /usr/lib/libcurl.so -L/tmp/curl-7.10.7/lib...
2004 Aug 06
2
OGG123 frozen under certain circumstances while listening at icecast
...rom /lib/libpthread.so.0 #3 0x401eef0b in pthread_cond_wait@GLIBC_2.0 () from /lib/libpthread.so.0 #4 0x0804b0d3 in buffer_get_data (buf=0x8056d70, data=0x8082b70 "±ùñ`\004", nbytes=964) at buffer.c:542 #5 0x0804df6d in http_read (source=0x8055ab0, ptr=0x8080e00, size=1, nmemb=8500) at http_transport.c:280 #6 0x0804f5cd in vorbisfile_cb_read (ptr=0x8080e00, size=1, nmemb=8500, arg=0x8079658) at oggvorbis_format.c:259 #7 0x4001ccc8 in _get_next_page () from /usr/radio//lib/libvorbisfile.so.3 #8 0x4001d3be in _fetch_and_process_packet () from /usr/radio//lib/libvorbisfile.so.3 #9 0x4001c235 i...
2004 May 23
4
Various Ogg Vorbis largefile notes and/or patches
Greetings one and all; I'm not subscribed to this list so I'm first sending this message to verify that mails from me make it through, and then later I'll send the juicy messages with patches. Also, the address I'm using is IPv6-only and doesn't often work, so drop me from any replies and I'll catch the archives, or drop only the hostname part to get an IPv4 address that
2002 Aug 14
0
automake 1.6 compatability patch
...12:18 -0000 @@ -2,8 +2,8 @@ AUTOMAKE_OPTIONS = foreign -mans = ogg123.1 -docs = ogg123rc-example +man_pages = ogg123.1 +doc_files = ogg123rc-example ogg123sources = audio.c buffer.c callbacks.c \ cfgfile_options.c cmdline_options.c \ file_transport.c format.c http_transport.c \ @@ -16,12 +16,19 @@ if BUILD_OGG123 +mans=$(man_pages) +docs=$(doc_files) +else +mans= +docs=$(doc_files) +endif datadir = @datadir@ localedir = $(datadir)/locale DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ -bin_PROGRAMS = ogg123 +bin_PROGRAMS = @OGG123@ +EXTRA_PROGRAMS = o...
2002 Oct 05
2
ogg123 remote interface
...ways try it */ } -data_source_t* file_open (char *source_string, ogg123_options_t *ogg123_opts) +data_source_t* file_open (char *source_string, ogg123_options_t *ogg123_opts, stat_format_t *stat_format) { data_source_t *source; file_private_t *private; diff -urN -X diff.ignore ogg123.orig/http_transport.c ogg123/http_transport.c --- ogg123.orig/http_transport.c Wed Jul 17 14:12:18 2002 +++ ogg123/http_transport.c Sat Oct 5 13:52:40 2002 @@ -35,7 +35,6 @@ #define INPUT_BUFFER_SIZE 32768 -extern stat_format_t *stat_format; /* Bad hack! Will fix after RC3! */ extern signal_request_t sig_requ...