Commit a69c9d8f authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* print a debug message when our buffer gets it's first data.

parent 91d3867d
......@@ -450,7 +450,10 @@ static void AStreamPrebufferBlock( stream_t *s )
}
if( i_first == 0 )
{
i_first = mdate();
msg_Dbg( s, "received first data for our buffer");
}
/* Append the block */
p_sys->block.i_size += b->i_buffer;
......@@ -1139,7 +1142,10 @@ static void AStreamPrebufferStream( stream_t *s )
}
if( i_first == 0 )
{
i_first = mdate();
msg_Dbg( s, "received first data for our buffer");
}
tk->i_end += i_read;
......
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