Displaying 2 results from an estimated 2 matches for "devices_t".
Did you mean:
device_t
2001 May 10
1
Possible fix for bug #14 (ogg123 -b memory leak)
Hi all,
Browsing through the bug database, I was able to reproduce #14. Briefly,
when I run, for example:
ogg123 -b 8000 test1.ogg test2.ogg test1.ogg [...]
where test1.ogg and test2.ogg have different bitrates or numbers of
channels (that is important), ogg123's memory usage continuously
increases as each new song is played.
I think I've tracked down the bug to the use of
2001 Mar 10
0
patch to add device-option to ogg123 rc file
...}
diff -u vorbis-tools-1.0beta4/ogg123/ogg123.h vorbis-tools-1.0beta4-modified/ogg123/ogg123.h
--- vorbis-tools-1.0beta4/ogg123/ogg123.h Wed Feb 21 18:49:12 2001
+++ vorbis-tools-1.0beta4-modified/ogg123/ogg123.h Sat Mar 10 03:21:12 2001
@@ -41,7 +41,7 @@
void devices_write(void *ptr, size_t size, devices_t * d);
void usage(void);
int add_option(ao_option_t ** op_h, const char *optstring);
-int get_default_device(void);
+int get_configs(ao_option_t ** op_h);
void play_file(ogg123_options_t opt);
int get_tcp_socket(void); /* Will be going soon. */
FILE *http_open(char *server, int port, char *path...