aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/rtp_player.c
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/gtk/rtp_player.c
parentbed31637255464d890cb74d4c7edc57c20c9a2f4 (diff)
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/gtk/rtp_player.c')
-rw-r--r--ui/gtk/rtp_player.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gtk/rtp_player.c b/ui/gtk/rtp_player.c
index 1894bd7556..9dc9767846 100644
--- a/ui/gtk/rtp_player.c
+++ b/ui/gtk/rtp_player.c
@@ -159,7 +159,7 @@ static PaStream *pa_stream;
typedef struct _rtp_channel_info {
nstime_t start_time_abs;
nstime_t stop_time_abs;
- GArray *samples; /* the array with decoded audio */
+ GArray *samples; /* Array of sample_t (decoded audio) */
guint16 call_num;
gboolean selected;
unsigned long frame_index;