Removed C++ style comments.

svn path=/trunk/; revision=24257
This commit is contained in:
Stig Bjørlykke 2008-02-03 14:44:21 +00:00
parent 2ab56c11e8
commit e59b5d6b8a
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ rtp_streams_stat_draw(void *arg _U_)
{
strinfo = (rtp_stream_info_t*)(list->data);
// payload type
/* payload type */
if(strinfo->pt>95){
if(strinfo->info_payload_type_str != NULL){
payload_type = g_strdup(strinfo->info_payload_type_str);
@ -98,7 +98,7 @@ rtp_streams_stat_draw(void *arg _U_)
"Unknown (%u)"));
}
// packet count, lost packets
/* packet count, lost packets */
expected = (strinfo->rtp_stats.stop_seq_nr + strinfo->rtp_stats.cycles*65536)
- strinfo->rtp_stats.start_seq_nr + 1;
lost = expected - strinfo->rtp_stats.total_nr;