search for: pstats_arg

Displaying 2 results from an estimated 2 matches for "pstats_arg".

2003 Mar 09
0
ogg123 --end 1:59 patch.ogg
...16:59:39 2003 @@ -140,6 +140,7 @@ opts->nth = 1; opts->ntimes = 1; opts->seekpos = 0.0; + opts->endpos = 0.0; opts->buffer_size = 128 * 1024; opts->prebuffer = 0.0f; opts->input_buffer_size = 64 * 1024; @@ -250,6 +251,18 @@ print_statistics_action(NULL, pstats_arg); } +double currenttime (stat_format_t *stat_format, + data_source_t *source, + decoder_t *decoder) +{ + print_statistics_arg_t *pstats_arg; + + pstats_arg = new_print_statistics_arg(stat_format, + source->transport->statistics(source), + decoder->format->statistics(d...
2002 Oct 05
2
ogg123 remote interface
...* Need access to global cancel flag */ typedef struct http_private_t { @@ -50,6 +49,7 @@ data_source_t *data_source; data_source_stats_t stats; + stat_format_t *stat_format; } http_private_t; @@ -82,7 +82,7 @@ if (myarg->cancel_flag || sig_request.cancel) return -1; - pstats_arg = new_print_statistics_arg(stat_format, + pstats_arg = new_print_statistics_arg(myarg->stat_format, source->transport->statistics(source), NULL); @@ -167,7 +167,7 @@ } -data_source_t* http_open (char *source_string, ogg123_options_t *ogg123_opts) +data_source_t* http_op...