aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/voip_calls.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2011-09-12 19:32:49 +0000
committerAnders Broman <anders.broman@ericsson.com>2011-09-12 19:32:49 +0000
commit0c2bb6e388da201ffc4abf1fa50fcb39ffaaa630 (patch)
tree66c7af6d545e76599fb0fbba7d56a6ef07cc547f /gtk/voip_calls.h
parent4d33ad6f6d8607ac972095d8506b88ecdc7def12 (diff)
Store a pointer to frame_data which holds the timing and frame number info rather than making copies.
svn path=/trunk/; revision=38981
Diffstat (limited to 'gtk/voip_calls.h')
-rw-r--r--gtk/voip_calls.h9
1 files changed, 3 insertions, 6 deletions
diff --git a/gtk/voip_calls.h b/gtk/voip_calls.h
index 804ca5f039..6cc8c576b9 100644
--- a/gtk/voip_calls.h
+++ b/gtk/voip_calls.h
@@ -207,13 +207,10 @@ typedef struct _voip_rtp_stream_info {
guint32 npackets;
gboolean end_stream;
- guint32 first_frame_num; /* frame number of first frame */
guint32 setup_frame_number; /* frame number of setup message */
- /* start of recording (GMT) of this stream */
- nstime_t start_abs;
- nstime_t stop_abs;
- nstime_t start_rel;
- nstime_t stop_rel;
+ /* The frame_data struct holds the frame number and timing information needed. */
+ frame_data *start_fd;
+ frame_data *stop_fd;
gint32 rtp_event;
} voip_rtp_stream_info_t;