search for: audio_reopen_arg_t

Displaying 4 results from an estimated 4 matches for "audio_reopen_arg_t".

2002 Jan 02
2
macosx (lots of little changes)
..._sigmask(SIG_BLOCK, &set, NULL) != 0) +#endif DEBUG("pthread_sigmask failed"); } I was getting segfaults using NULL instead of the dummy variable. --- ogg123/callbacks.c.orig Wed Jan 2 01:25:13 2002 +++ ogg123/callbacks.c Tue Jan 1 18:14:29 2002 @@ -40,10 +40,11 @@ audio_reopen_arg_t *reopen_arg = (audio_reopen_arg_t *) arg; audio_device_t *current; ao_sample_format format; + int dummy_o; /* We DO NOT want to get cancelled part way through this and have our audio devices in an unknown state */ - pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); + pthr...
2002 Jan 02
2
macosx (lots of little changes)
..._sigmask(SIG_BLOCK, &set, NULL) != 0) +#endif DEBUG("pthread_sigmask failed"); } I was getting segfaults using NULL instead of the dummy variable. --- ogg123/callbacks.c.orig Wed Jan 2 01:25:13 2002 +++ ogg123/callbacks.c Tue Jan 1 18:14:29 2002 @@ -40,10 +40,11 @@ audio_reopen_arg_t *reopen_arg = (audio_reopen_arg_t *) arg; audio_device_t *current; ao_sample_format format; + int dummy_o; /* We DO NOT want to get cancelled part way through this and have our audio devices in an unknown state */ - pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL); + pthr...
2004 Sep 30
1
[don@donarmstrong.com: Bug#274301: libflac4 segfaults on corrupt flac files]
...= 0x804d255 <decoder_buffered_metadata_callback>} decoder_callbacks_arg = (void *) 0x407ed008 old_audio_fmt = {big_endian = 0, word_size = 0, signed_sample = 0, rate = 0, channels = 0} new_audio_fmt = {big_endian = 0, word_size = 2, signed_sample = 1, rate = 0, channels = 0} reopen_arg = (audio_reopen_arg_t *) 0x0 eof = 0 eos = 0 ret = 0 nthc = 0 ntimesc = 0 next_status = 0 status_interval = 0 #9 0x0804fd23 in main (argc=2, argv=0xbffff584) at ../../ogg123/ogg123.c:393 optind = 1 playlist_array = (char **) 0x805b8c0 items = 1 stat_buf = {st_dev = 2073, __pad1 = 0, st_ino = 3041522, st_mode...
2002 Oct 05
2
ogg123 remote interface
...lbacks_arg; - - /* Preserve between calls so we only open the audio device when we - have to */ - static audio_format_t old_audio_fmt = { 0, 0, 0, 0, 0 }; + int pl_index = 0; + audio_format_t old_audio_fmt = { 0, 0, 0, 0, 0 }; + int status_interval = 0; audio_format_t new_audio_fmt; audio_reopen_arg_t *reopen_arg; + + decoder_callbacks_t decoder_callbacks; + void *decoder_callbacks_arg; - /* Flags and counters galore */ - int eof = 0, eos = 0, ret; - int nthc = 0, ntimesc = 0; - int next_status = 0; - static int status_interval = 0; - - /* Reset all of the signal flags */ - sig_requ...