aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_stream.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-25 19:35:14 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-25 19:35:14 +0000
commit87d87ace4e628c8826391817f67a373af1712a4f (patch)
tree7e0ccd0925757fd9680c8213c157160a197fb3df /gtk/rtp_stream.c
parent280403738f4bf14de67e192500cb5a744696b726 (diff)
RTP analysis updates from Lars Ruoff:
- can now handle streams with different payload types - detects payload changes - detects comfort noise (PT=13 and 19) - status line now shows: sequence errors, payload changes, comfort noise (if any) - uses colours for lines with status != "Ok" - new button "next": jumps to next line with status != "Ok" (starting from selected line) - fixed: wrong jitter calculation (bug from tap_rtp) - fixed: marker was not shown on first packet or erroneous packets (bug from tap_rtp) - code refactored to improve readability and reuse svn path=/trunk/; revision=8543
Diffstat (limited to 'gtk/rtp_stream.c')
-rw-r--r--gtk/rtp_stream.c24
1 files changed, 3 insertions, 21 deletions
diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c
index b662cb6db3..a1b9c3e69e 100644
--- a/gtk/rtp_stream.c
+++ b/gtk/rtp_stream.c
@@ -1,7 +1,7 @@
/* rtp_stream.c
* RTP streams summary addition for ethereal
*
- * $Id: rtp_stream.c,v 1.1 2003/09/24 07:48:11 guy Exp $
+ * $Id: rtp_stream.c,v 1.2 2003/09/25 19:35:14 guy Exp $
*
* Copyright 2003, Alcatel Business Systems
* By Lars Ruoff <lars.ruoff@gmx.net>
@@ -72,8 +72,7 @@ gint rtp_stream_info_cmp(gconstpointer aa, gconstpointer bb)
&& (a->src_port == b->src_port)
&& (a->dest_addr == b->dest_addr)
&& (a->dest_port == b->dest_port)
- && (a->ssrc == b->ssrc)
- && (a->pt == b->pt))
+ && (a->ssrc == b->ssrc))
return 0;
else
return 1;
@@ -148,7 +147,7 @@ static void rtp_write_header(rtp_stream_info_t *strinfo, FILE *file)
guint16 port; /* UDP port */
guint16 padding; /* 2 padding bytes */
- fprintf(file, "#!rtpplay%s %s/%d\n", RTPFILE_VERSION,
+ fprintf(file, "#!rtpplay%s %s/%u\n", RTPFILE_VERSION,
ip_to_str((guint8*) &strinfo->dest_addr),
strinfo->dest_port);
@@ -184,21 +183,6 @@ static void rtp_write_sample(rtp_sample_t* sample, FILE* file)
}
-/* utility function for writing a sample to file in RAS format */
-static
-void ras_write_sample(rtp_sample_t* sample, FILE* file)
-{
- rtp_sample_header_t net_order_header;
-
- net_order_header.rec_time = g_htonl(sample->header.rec_time);
- net_order_header.frame_length = g_htons(sample->header.frame_length);
-
- fwrite(&(net_order_header.rec_time), 1, 4, file);
- fwrite(&(net_order_header.frame_length), 1, 2, file);
- fwrite(sample->frame, 1, sample->header.frame_length, file);
-}
-
-
/****************************************************************************/
/* whenever a RTP packet is seen by the tap listener */
int rtpstream_packet(rtpstream_tapinfo_t *tapinfo _U_, packet_info *pinfo, epan_dissect_t *edt _U_, struct _rtp_info *rtpinfo _U_)
@@ -258,14 +242,12 @@ int rtpstream_packet(rtpstream_tapinfo_t *tapinfo _U_, packet_info *pinfo, epan_
}
else if (tapinfo->mode == TAP_SAVE) {
if (rtp_stream_info_cmp(&tmp_strinfo, tapinfo->filter_stream_fwd)==0) {
-/* sample.header.rec_time = pinfo->fd->abs_secs*1000 + pinfo->fd->abs_usecs;*/
sample.header.rec_time =
(pinfo->fd->abs_usecs + 1000000 - tapinfo->filter_stream_fwd->start_usec)/1000
+ (pinfo->fd->abs_secs - tapinfo->filter_stream_fwd->start_sec - 1)*1000;
sample.header.frame_length = rtpinfo->info_data_len;
sample.frame = cfile.pd + pinfo->fd->pkt_len - rtpinfo->info_data_len;
rtp_write_sample(&sample, tapinfo->save_file);
-/* ras_write_sample(&sample, tapinfo->save_file);*/
}
}
else if (tapinfo->mode == TAP_MARK) {