merge_all_tap_menus() has been moved to menus.c.
[obnox/wireshark/wip.git] / gtk / rtp_player.h
1 /* player_rtp.h
2  * RTP Player for Wireshark
3  *
4  * $Id$
5  *
6  * Copyright 2006, Alejandro Vaquero
7  * By Alejandro Vaquero <alejandro.vaquero@yahoo.com>
8  *
9  * based on h323_calls.h
10  * Copyright 2004, Iskratel, Ltd, Kranj
11  * By Miha Jemec <m.jemec@iskratel.si>
12  *
13  * H323, RTP and Graph Support
14  * By Alejandro Vaquero, alejandro.vaquero@verso.com
15  * Copyright 2005, Verso Technologies Inc.
16  *
17  * Wireshark - Network traffic analyzer
18  * By Gerald Combs <gerald@wireshark.org>
19  * Copyright 1998 Gerald Combs
20  *
21  * This program is free software; you can redistribute it and/or
22  * modify it under the terms of the GNU General Public License
23  * as published by the Free Software Foundation; either version 2
24  * of the License, or (at your option) any later version.
25  *
26  * This program is distributed in the hope that it will be useful,
27  * but WITHOUT ANY WARRANTY; without even the implied warranty of
28  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
29  * GNU General Public License for more details.
30  *
31  * You should have received a copy of the GNU General Public License
32  * along with this program; if not, write to the Free Software
33  * Foundation,  Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
34  */
35
36 #ifndef __RTP_PLAYER_H__
37 #define __RTP_PLAYER_H__
38
39 #ifdef HAVE_LIBPORTAUDIO
40
41 void rtp_player_init(voip_calls_tapinfo_t *voip_calls_tap);
42 void add_rtp_packet(const struct _rtp_info *rtp_info, packet_info *pinfo);
43 void reset_rtp_player(void);
44
45 #endif /* HAVE_LIBPORTAUDIO */
46
47 #endif /* __RTP_PLAYER_H__ */