Commit f04a7c62 authored by Ilkka Ollakka's avatar Ilkka Ollakka

stats: calculate dts difference if there is actually difference

parent 47abb64a
...@@ -226,16 +226,19 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_sys_t *id, ...@@ -226,16 +226,19 @@ static int Send( sout_stream_t *p_stream, sout_stream_id_sys_t *id,
/* We could just set p_sys->output to stdout and remove user of msg_Dbg /* We could just set p_sys->output to stdout and remove user of msg_Dbg
* if we don't need ability to output info to gui modules (like qt4 messages window * if we don't need ability to output info to gui modules (like qt4 messages window
*/ */
mtime_t dts_difference = VLC_TS_INVALID;
if( likely( id->previous_dts != VLC_TS_INVALID ) )
dts_difference = p_block->i_dts - id->previous_dts;
if( p_sys->output ) if( p_sys->output )
{ {
/* Write data in a form that it's easy to plot for example with gnuplot*/ /* Write data in a form that it's easy to plot for example with gnuplot*/
fprintf( p_sys->output, "%s\t%d\t%s\t%"PRIu64"\t%"PRId64"\t%"PRId64"\t%16s\n", fprintf( p_sys->output, "%s\t%d\t%s\t%"PRIu64"\t%"PRId64"\t%"PRId64"\t%16s\n",
p_sys->prefix, id->id, id->type, ++id->segment_number, p_block->i_dts - id->previous_dts, p_sys->prefix, id->id, id->type, ++id->segment_number, dts_difference,
p_block->i_length, outputhash ); p_block->i_length, outputhash );
} else { } else {
msg_Dbg( p_stream, "%s: track:%d type:%s segment_number:%"PRIu64" dts_difference:%"PRId64" length:%"PRId64" md5:%16s", msg_Dbg( p_stream, "%s: track:%d type:%s segment_number:%"PRIu64" dts_difference:%"PRId64" length:%"PRId64" md5:%16s",
p_sys->prefix, id->id, id->type, ++id->segment_number, p_block->i_dts - id->previous_dts, p_sys->prefix, id->id, id->type, ++id->segment_number, dts_difference,
p_block->i_length, outputhash ); p_block->i_length, outputhash );
} }
free( outputhash ); free( outputhash );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment