Changeset 189
- Timestamp:
- Feb 15, 2006 12:41:43 PM (19 years ago)
- Location:
- pjproject/trunk/pjmedia
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/docs/doxygen.cfg
r188 r189 501 501 # standard header. 502 502 503 HTML_HEADER = ../pjlib/docs/header.html503 HTML_HEADER = docs/header.html 504 504 505 505 # The HTML_FOOTER tag can be used to specify a personal HTML footer for … … 507 507 # standard footer. 508 508 509 HTML_FOOTER = ../pjlib/docs/footer.html509 HTML_FOOTER = docs/footer.html 510 510 511 511 # The HTML_STYLESHEET tag can be used to specify a user defined cascading -
pjproject/trunk/pjmedia/include/pjmedia/codec.h
r188 r189 36 36 * @ingroup PJMEDIA 37 37 * @{ 38 * 39 * The codec manager is used to manage all codec capabilities in the endpoint. 40 * Library implementors can extend PJMEDIA codec capabilities by creating 41 * a codec factory for a new codec, and register the codec factory to 42 * codec manager so that the codec can be used by the rest of application. 43 * 44 * When used with media endpoint (pjmedia_endpt), application can retrieve 45 * the codec manager instance by calling #pjmedia_endpt_get_codec_mgr(). 38 46 */ 39 47 -
pjproject/trunk/pjmedia/include/pjmedia/endpoint.h
r188 r189 35 35 * 36 36 * A reference to media endpoint instance is required when application wants 37 * to create a media session (#pj_media_session_create or 38 * #pj_media_session_create_from_sdp). 37 * to create a media session (#pjmedia_session_create()). 39 38 */ 40 39 -
pjproject/trunk/pjmedia/include/pjmedia/sdp.h
r188 r189 33 33 * 34 34 * The basic SDP session descriptor and elements are described in header 35 * file < pre><pjmedia/sdp.h></pre>. This file contains declaration for35 * file <b><pjmedia/sdp.h></b>. This file contains declaration for 36 36 * SDP session descriptor and SDP media descriptor, along with their 37 37 * attributes. This file also declares functions to parse SDP message. -
pjproject/trunk/pjmedia/include/pjmedia/session.h
r188 r189 45 45 * This module provides functions to create and manage multimedia 46 46 * sessions. 47 * 48 * Application creates the media session by calling #pjmedia_session_create(), 49 * normally after it has completed negotiating both SDP offer and answer. 50 * The session creation function creates the media session (including 51 * media streams) based on the content of local and remote SDP. 47 52 */ 48 53 … … 63 68 64 69 /** 65 * Create new session offeringbased on the local and remote SDP.70 * Create media session based on the local and remote SDP. 66 71 * The session will start immediately. 67 72 * -
pjproject/trunk/pjmedia/include/pjmedia/stream.h
r188 r189 45 45 * - encoding channel, which transmits unidirectional media to remote, and 46 46 * - decoding channel, which receives unidirectional media from remote. 47 * 48 * Application normally does not need to create the stream directly; it 49 * creates media session instead. The media session will create the media 50 * streams as necessary, according to the media descriptors that present 51 * in local and remote SDP. 47 52 */ 48 53
Note: See TracChangeset
for help on using the changeset viewer.