Displaying 2 results from an estimated 2 matches for "signed_sampl".
Did you mean:
signed_sample
2004 Sep 30
1
[don@donarmstrong.com: Bug#274301: libflac4 segfaults on corrupt flac files]
...05aa60
decoder = (decoder_t *) 0x10000000
decoder_callbacks = {printf_error = 0x804d0d8 <decoder_buffered_error_callback>,
printf_metadata = 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)...
2002 Oct 05
2
ogg123 remote interface
...NK_SIZE;
+
+ convbuffer = malloc(convsize);
+ if (convbuffer == NULL) {
+ status_error(_("Error: Out of memory in control_default().\n"));
+ exit(1);
+ }
+
/* Set preferred audio format (used by decoder) */
new_audio_fmt.big_endian = ao_is_big_endian();
new_audio_fmt.signed_sample = 1;
@@ -422,171 +406,193 @@
decoder_callbacks_arg = NULL;
}
- /* Locate and use transport for this data source */
- if ( (transport = select_transport(source_string)) == NULL ) {
- status_error(_("No module could be found to read from %s.\n"), source_string);
- retur...