Mercurial > hg > audiostuff
comparison spandsp-0.0.6pre17/tests/media_monitor.h @ 4:26cd8f1ef0b1
import spandsp-0.0.6pre17
| author | Peter Meerwald <pmeerw@cosy.sbg.ac.at> |
|---|---|
| date | Fri, 25 Jun 2010 15:50:58 +0200 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 3:c6c5a16ce2f2 | 4:26cd8f1ef0b1 |
|---|---|
| 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.6 2008/04/26 13:39:17 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 ------------------------------------------------------------*/ |
