aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_player.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-09-21 17:39:17 +0000
committerGuy Harris <guy@alum.mit.edu>2006-09-21 17:39:17 +0000
commit2ac876197887a5db0fb5e927ea4e988f1a2c56f8 (patch)
tree710abb4bfdd277bf784c5e48f302dc8f37e38fb6 /gtk/rtp_player.h
parent18664a78036986a4e639840f2938144661f033c3 (diff)
Include "rtp_player.h" in "voip_calls.c" if we're supporting the RTP
player, so that we get declartions of rtp_player_init() and add_rtp_packet(). Constify the first argument to add_rtp_packet(), as it's passed a pointer to a const value. svn path=/trunk/; revision=19272
Diffstat (limited to 'gtk/rtp_player.h')
-rw-r--r--gtk/rtp_player.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/rtp_player.h b/gtk/rtp_player.h
index 5184c9cab2..f795946a65 100644
--- a/gtk/rtp_player.h
+++ b/gtk/rtp_player.h
@@ -37,7 +37,7 @@
#if GTK_MAJOR_VERSION >= 2
void rtp_player_init(voip_calls_tapinfo_t *voip_calls_tap);
-void add_rtp_packet(struct _rtp_info *rtp_info, packet_info *pinfo);
+void add_rtp_packet(const struct _rtp_info *rtp_info, packet_info *pinfo);
void reset_rtp_player(void);
#endif