Changeset 189


Ignore:
Timestamp:
Feb 15, 2006 12:41:43 PM (18 years ago)
Author:
bennylp
Message:

Correct broken links in Doxygen documentation

Location:
pjproject/trunk/pjmedia
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/docs/doxygen.cfg

    r188 r189  
    501501# standard header. 
    502502 
    503 HTML_HEADER            = ../pjlib/docs/header.html 
     503HTML_HEADER            = docs/header.html 
    504504 
    505505# The HTML_FOOTER tag can be used to specify a personal HTML footer for  
     
    507507# standard footer. 
    508508 
    509 HTML_FOOTER            = ../pjlib/docs/footer.html 
     509HTML_FOOTER            = docs/footer.html 
    510510 
    511511# The HTML_STYLESHEET tag can be used to specify a user defined cascading  
  • pjproject/trunk/pjmedia/include/pjmedia/codec.h

    r188 r189  
    3636 * @ingroup PJMEDIA 
    3737 * @{ 
     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(). 
    3846 */ 
    3947 
  • pjproject/trunk/pjmedia/include/pjmedia/endpoint.h

    r188 r189  
    3535 * 
    3636 * 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()). 
    3938 */ 
    4039 
  • pjproject/trunk/pjmedia/include/pjmedia/sdp.h

    r188 r189  
    3333 * 
    3434 * The basic SDP session descriptor and elements are described in header 
    35  * file <pre><pjmedia/sdp.h></pre>. This file contains declaration for 
     35 * file <b><pjmedia/sdp.h></b>. This file contains declaration for 
    3636 * SDP session descriptor and SDP media descriptor, along with their 
    3737 * attributes. This file also declares functions to parse SDP message. 
  • pjproject/trunk/pjmedia/include/pjmedia/session.h

    r188 r189  
    4545 * This module provides functions to create and manage multimedia 
    4646 * 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. 
    4752 */ 
    4853 
     
    6368 
    6469/** 
    65  * Create new session offering based on the local and remote SDP. 
     70 * Create media session based on the local and remote SDP. 
    6671 * The session will start immediately. 
    6772 * 
  • pjproject/trunk/pjmedia/include/pjmedia/stream.h

    r188 r189  
    4545 *  - encoding channel, which transmits unidirectional media to remote, and 
    4646 *  - 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. 
    4752 */ 
    4853 
Note: See TracChangeset for help on using the changeset viewer.