From ef3cc4a2c15cc351a38193e44adf938624634666 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Mon, 13 Jul 2015 11:56:20 -0700 Subject: RTP updates. Merge rtp_sample_header_t into rtp_sample_t. That's the only place it was used. Note that rtp_sample_t is used for writing rtpdump files. Move the rtp_sample_t definition to tap-rtp-common.c. Rename it to rtpdump_info_t. Make rtp_write_sample static. Change-Id: I04e7428f634efa87a98e5d6c82a354f94ab1765d Reviewed-on: https://code.wireshark.org/review/9629 Petri-Dish: Gerald Combs Tested-by: Petri Dish Buildbot Reviewed-by: Gerald Combs --- ui/rtp_stream.h | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'ui/rtp_stream.h') diff --git a/ui/rtp_stream.h b/ui/rtp_stream.h index d7cef57158..f6097561ff 100644 --- a/ui/rtp_stream.h +++ b/ui/rtp_stream.h @@ -44,23 +44,6 @@ extern "C" { #include #include - -/****************************************************************************/ -/* type for storing rtp frame information */ -typedef struct st_rtp_sample_header { - double rec_time; /**< milliseconds since start of recording */ - guint16 frame_length; /**< number of bytes in *frame */ -} rtp_sample_header_t; - -/** type for storing rtp frame information */ -typedef struct st_rtp_sample { - rtp_sample_header_t header; /**< date and size */ - const guint8 *frame; /**< data bytes */ -} rtp_sample_t; - -typedef rtp_sample_t* rtp_sample_p; - - /** Defines an rtp stream */ typedef struct _rtp_stream_info { address src_addr; -- cgit v1.2.1