summaryrefslogtreecommitdiff
path: root/ui/rtp_stream.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-07-13 11:56:20 -0700
committerGerald Combs <gerald@wireshark.org>2015-07-13 20:12:33 +0000
commitef3cc4a2c15cc351a38193e44adf938624634666 (patch)
treedc1bab362deb15ad35a1cecf2a8007286b8dc60a /ui/rtp_stream.h
parentbed31637255464d890cb74d4c7edc57c20c9a2f4 (diff)
downloadwireshark-ef3cc4a2c15cc351a38193e44adf938624634666.tar.gz
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 <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/rtp_stream.h')
-rw-r--r--ui/rtp_stream.h17
1 files changed, 0 insertions, 17 deletions
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 <epan/address.h>
#include <epan/tap.h>
-
-/****************************************************************************/
-/* 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;