]> sjero.net Git - linphone/blob - coreapi/offeranswer.h
Aac-eld add missing header according to RFC3640 3.3.6
[linphone] / coreapi / offeranswer.h
1 /*
2 linphone
3 Copyright (C) 2010  Simon MORLAT (simon.morlat@free.fr)
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 #ifndef offeranswer_h
21 #define offeranswer_h
22
23 /** 
24  This header files defines the SDP offer answer API.
25  It can be used by implementations of SAL directly.
26 **/
27
28
29 /**
30  * Returns a media description to run the streams with, based on a local offer
31  * and the returned response (remote).
32 **/
33 int offer_answer_initiate_outgoing(const SalMediaDescription *local_offer,
34                                                                         const SalMediaDescription *remote_answer,
35                                                         SalMediaDescription *result);
36
37 /**
38  * Returns a media description to run the streams with, based on the local capabilities and
39  * and the received offer.
40  * The returned media description is an answer and should be sent to the offerer.
41 **/
42 int offer_answer_initiate_incoming(const SalMediaDescription *local_capabilities,
43                                                 const SalMediaDescription *remote_offer,
44                                         SalMediaDescription *result, bool_t one_matching_codec);
45                                         
46 #endif
47