~ubuntu-branches/ubuntu/intrepid/iaxmodem/intrepid

« back to all changes in this revision

Viewing changes to lib/spandsp/tests/media_monitor.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien BLACHE
  • Date: 2008-02-12 15:29:42 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080212152942-28cxxstfy8iujm0p
Tags: 1.1.0~dfsg-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * SpanDSP - a series of DSP components for telephony
 
3
 *
 
4
 * media_monitor.h - Display IP streaming media status, using the FLTK toolkit.
 
5
 *
 
6
 * Written by Steve Underwood <steveu@coppice.org>
 
7
 *
 
8
 * Copyright (C) 2007 Steve Underwood
 
9
 *
 
10
 * All rights reserved.
 
11
 *
 
12
 * This program is free software; you can redistribute it and/or modify
 
13
 * it under the terms of the GNU General Public License version 2, as
 
14
 * published by the Free Software Foundation.
 
15
 *
 
16
 * This program is distributed in the hope that it will be useful,
 
17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
 * GNU General Public License for more details.
 
20
 *
 
21
 * You should have received a copy of the GNU General Public License
 
22
 * along with this program; if not, write to the Free Software
 
23
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
24
 *
 
25
 * $Id: media_monitor.h,v 1.3 2007/04/03 12:59:33 steveu Exp $
 
26
 */
 
27
 
 
28
/*! \page media_monitor_page IP streaming media performance monitoring
 
29
\section media_monitor_page_sec_1 What does it do?
 
30
This code controls a GUI window, which provides monitoring of the status
 
31
of an IP media stream. It shows, graphically:
 
32
 
 
33
\section media_monitor_page_sec_2 How does it work?
 
34
This code uses the FLTK cross platform GUI toolkit. It works on X11 and Windows platforms.
 
35
In addition to the basic FLTK toolkit, fltk_cartesian is also required.
 
36
*/
 
37
 
 
38
#if !defined(_MEDIA_MONITOR_H_)
 
39
#define _MEDIA_MONITOR_H_
 
40
 
 
41
#if defined(__cplusplus)
 
42
extern "C"
 
43
{
 
44
#endif
 
45
 
 
46
int start_media_monitor(void);
 
47
void media_monitor_rx(int seq_no, double departure_time, double arrival_time);
 
48
void media_monitor_wait_to_end(void);
 
49
void media_monitor_update_display(void);
 
50
 
 
51
#if defined(__cplusplus)
 
52
}
 
53
#endif
 
54
 
 
55
#endif
 
56
/*- End of file ------------------------------------------------------------*/