Ignore:
Timestamp:
Jun 6, 2006 6:40:40 PM (18 years ago)
Author:
bennylp
Message:

Another huge chunks of modifications in PJSUA API, too many things to mention!

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/conference.h

    r347 r492  
    4747    pj_bool_t          *listener;           /**< Array of listeners.        */ 
    4848    unsigned            clock_rate;         /**< Clock rate of the port.    */ 
     49    unsigned            channel_count;      /**< Number of channels.        */ 
    4950    unsigned            samples_per_frame;  /**< Samples per frame          */ 
     51    unsigned            bits_per_sample;    /**< Bits per sample.           */ 
    5052    int                 tx_adj_level;       /**< Tx level adjustment.       */ 
    5153    int                 rx_adj_level;       /**< Rx level adjustment.       */ 
     
    255257 
    256258/** 
     259 * Enumerate occupied ports in the bridge. 
     260 * 
     261 * @param conf          The conference bridge. 
     262 * @param ports         Array of port numbers to be filled in. 
     263 * @param count         On input, specifies the maximum number of ports 
     264 *                      in the array. On return, it will be filled with 
     265 *                      the actual number of ports. 
     266 * 
     267 * @return              PJ_SUCCESS on success. 
     268 */ 
     269PJ_DECL(pj_status_t) pjmedia_conf_enum_ports( pjmedia_conf *conf, 
     270                                              unsigned ports[], 
     271                                              unsigned *count ); 
     272 
     273 
     274/** 
    257275 * Get port info. 
    258276 * 
Note: See TracChangeset for help on using the changeset viewer.