~ubuntu-branches/ubuntu/hardy/linphone/hardy

« back to all changes in this revision

Viewing changes to mediastreamer2/msrtp.h

  • Committer: Bazaar Package Importer
  • Author(s): Samuel Mimram
  • Date: 2006-10-11 11:33:53 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20061011113353-mnnkce31bu61g80s
Tags: 1.5.0-1
* New upstream release.
* Removed ice.dpatch and stun_sparc.dpatch, integrated upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
mediastreamer2 library - modular sound and video processing and streaming
3
 
Copyright (C) 2006  Simon MORLAT (simon.morlat@linphone.org)
4
 
 
5
 
This program is free software; you can redistribute it and/or
6
 
modify it under the terms of the GNU General Public License
7
 
as published by the Free Software Foundation; either version 2
8
 
of the License, or (at your option) any later version.
9
 
 
10
 
This program is distributed in the hope that it will be useful,
11
 
but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
GNU General Public License for more details.
14
 
 
15
 
You should have received a copy of the GNU General Public License
16
 
along with this program; if not, write to the Free Software
17
 
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
 
*/
19
 
 
20
 
 
21
 
#ifndef msrtp_hh
22
 
#define msrtp_hh
23
 
 
24
 
#include "msfilter.h"
25
 
#include "ortp/ortp.h"
26
 
 
27
 
#define MS_RTP_RECV_SET_SESSION         MS_FILTER_METHOD(MS_RTP_RECV_ID,0,RtpSession*)
28
 
 
29
 
#define MS_RTP_SEND_SET_SESSION         MS_FILTER_METHOD(MS_RTP_SEND_ID,0,RtpSession*)
30
 
 
31
 
#define MS_RTP_SEND_SEND_DTMF           MS_FILTER_METHOD(MS_RTP_SEND_ID,1,const char)
32
 
 
33
 
extern MSFilterDesc ms_rtp_send_desc;
34
 
extern MSFilterDesc ms_rtp_recv_desc;
35
 
 
36
 
#endif