2 .\" Copyright (c) 2007, Sun Microsystems Inc. All Rights Reserved.
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH SDP_FIND_MEDIA 3COMMPUTIL "Oct 12, 2007"
8 sdp_find_media \- find the specified media from the media list
12 \fBcc\fR [ \fIflag\fR...] \fIfile\fR... -\fBlcommputil\fR [ \fIlibrary\fR...]
15 \fBsdp_media_t *\fR\fBsdp_find_media\fR(\fBsdp_media_t *\fR\fImedia\fR, \fBconst char *\fR\fIname\fR);
21 The \fBsdp_find_media()\fR function searches the media list for the media
22 specified by \fIname\fR. If the media is found it returns the pointer to the
23 media. Otherwise it returns \fINULL\fR.
27 The \fBsdp_find_media()\fR function returns the media (\fBsdp_media_t *\fR) on
28 success and \fINULL\fR when the search fails or the mandatory input parameters
32 \fBExample 1 \fRAn (incomplete) SDP description that contains two media
33 sections: audio and video.
37 m=audio 49170 RTP/AVP 0 8
40 m=video 51372 RTP/AVP 31 32
41 a=rtpmap:31 H261/90000
45 * Assuming that above description is parsed using sdp_parse() and that
46 * the parsed structure is in "session" sdp_session_t structure.
49 sdp_media_t *my_media;
50 my_media = sdp_find_media(session->s_media, "video");
53 * my_media now points to the structure containg video media section
62 See \fBattributes\fR(5) for descriptions of the following attributes:
70 ATTRIBUTE TYPE ATTRIBUTE VALUE
72 Interface Stability Committed
80 \fBlibcommputil\fR(3LIB), \fBsdp_parse\fR(3COMMPUTIL), \fBattributes\fR(5)