aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/rtp_player.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-06-07 22:50:49 +0000
committerBill Meier <wmeier@newsguy.com>2011-06-07 22:50:49 +0000
commitd75988bacc35801e91084be28ebdf5b7e8ae89c9 (patch)
tree2dcbcd30394c6b8c9ff032c69e2dd365fd3f6cc6 /gtk/rtp_player.c
parent4f420ef6cd41699f9945697d9d2fb6f521deaf39 (diff)
Fix gcc 4.6 "set but not used [-Wunused-but-set-variable]" warnings;
Also: whitespace cleanup in some cases. svn path=/trunk/; revision=37601
Diffstat (limited to 'gtk/rtp_player.c')
-rw-r--r--gtk/rtp_player.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/gtk/rtp_player.c b/gtk/rtp_player.c
index bd66a4a74f..2fcc508000 100644
--- a/gtk/rtp_player.c
+++ b/gtk/rtp_player.c
@@ -594,14 +594,18 @@ decode_rtp_stream(rtp_stream_info_t *rsi, gpointer ptr _U_)
double start_rtp_time = 0;
double diff;
double pack_period;
+#ifdef DEBUG /* ?? */
double total_time;
double total_time_prev;
+#endif
gint32 silence_frames;
int seq;
double delay;
double prev_diff;
+#ifdef DEBUG /* ?? */
double mean_delay;
double variation;
+#endif
int decoded_bytes;
int decoded_bytes_prev;
int jitter_buff;
@@ -687,13 +691,17 @@ decode_rtp_stream(rtp_stream_info_t *rsi, gpointer ptr _U_)
arrive_time = start_time = 0;
arrive_time_prev = 0;
pack_period = 0;
+#ifdef DEBUG /* ?? */
total_time = 0;
total_time_prev = 0;
+#endif
seq = 0;
delay = 0;
prev_diff = 0;
+#ifdef DEBUG /* ?? */
mean_delay = 0;
variation = 0;
+#endif
start_timestamp = 0;
decoders_hash = g_hash_table_new_full(g_direct_hash, g_direct_equal, NULL, rtp_decoder_value_destroy);
@@ -758,8 +766,8 @@ decode_rtp_stream(rtp_stream_info_t *rsi, gpointer ptr _U_)
if (diff<0) diff = -diff;
- total_time = (double)rp->arrive_offset/1000;
#ifdef DEBUG
+ total_time = (double)rp->arrive_offset/1000;
printf("seq = %d arr = %f abs_diff = %f index = %d tim = %f ji=%d jb=%f\n",rp->info->info_seq_num,
total_time, diff, rci->samples->len, ((double)rci->samples->len/8000 - total_time)*1000, 0,
(mean_delay + 4*variation)*1000);
@@ -874,7 +882,7 @@ stop_channels(void)
GtkWidget *dialog;
/* we should never be here if we are already in STOP */
- g_assert(rtp_channels->stop == FALSE);
+ g_assert(rtp_channels->stop == FALSE);
rtp_channels->stop = TRUE;
/* force a draw_cursor to stop it */