aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_player.c
diff options
context:
space:
mode:
Diffstat (limited to 'gtk/rtp_player.c')
-rw-r--r--gtk/rtp_player.c38
1 files changed, 18 insertions, 20 deletions
diff --git a/gtk/rtp_player.c b/gtk/rtp_player.c
index 83c581e131..552842782b 100644
--- a/gtk/rtp_player.c
+++ b/gtk/rtp_player.c
@@ -56,34 +56,32 @@
#endif
#ifdef HAVE_LIBPORTAUDIO
-/* TODO: The RTP Player it is only supported for GTK >=2 */
-#include <gtk/gtk.h>
-
-#include <epan/stats_tree.h>
-#include <epan/addr_resolv.h>
+#include <math.h>
#include <string.h>
-#include <glib.h>
-#include "globals.h"
#include "portaudio.h"
-#include "simple_dialog.h"
-#include "gui_utils.h"
-#include "dlg_utils.h"
-
-#include "graph_analysis.h"
-#include "voip_calls_dlg.h"
-#include "voip_calls.h"
-#include "gtkglobals.h"
+#include <gtk/gtk.h>
+#include <epan/stats_tree.h>
+#include <epan/addr_resolv.h>
#include <epan/dissectors/packet-rtp.h>
#include <epan/rtp_pt.h>
#include <epan/codecs.h>
+#include <epan/prefs.h>
+
+#include "../globals.h"
+#include "../simple_dialog.h"
+#include "../codecs/G711a/G711adecode.h"
+#include "../codecs/G711u/G711udecode.h"
+
+#include "gtk/gui_utils.h"
+#include "gtk/dlg_utils.h"
+#include "gtk/graph_analysis.h"
+#include "gtk/voip_calls_dlg.h"
+#include "gtk/voip_calls.h"
+#include "gtk/gtkglobals.h"
+#include "gtk/rtp_player.h"
-#include "rtp_player.h"
-#include "codecs/G711a/G711adecode.h"
-#include "codecs/G711u/G711udecode.h"
-#include <math.h>
-#include <epan/prefs.h> /* For prefs.rtp_player_max_visible and RTP_PLAYER_DEFAULT_VISIBLE */
#ifndef min
#define min(a,b) (((a)<(b))?(a):(b))