Ignore:
Timestamp:
May 13, 2006 10:46:23 PM (18 years ago)
Author:
bennylp
Message:

Another major modifications in PJMEDIA:

  • handle multiple frames in one packet
  • split stream creation into two steps to allow customization
  • PLC framework and implementation with G.711 and speex
  • stream returns NO_FRAME correctly.
  • added ptime argument in pjsua
File:
1 edited

Legend:

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

    r428 r438  
    7373    pj_sockaddr_in      rem_addr;   /**< Remote RTP address                 */ 
    7474    pjmedia_codec_info  fmt;        /**< Incoming codec format info.        */ 
     75    pjmedia_codec_param *param;     /**< Optional codec param.              */ 
    7576    unsigned            tx_pt;      /**< Outgoing codec paylaod type.       */ 
    7677    int                 tx_event_pt;/**< Outgoing pt for telephone-events.  */ 
    7778    int                 rx_event_pt;/**< Incoming pt for telephone-events.  */ 
    7879    pj_uint32_t         ssrc;       /**< RTP SSRC.                          */ 
    79     int                 jb_init;    /**< Jitter buffer init delay in msec.  */ 
     80    int                 jb_init;    /**< Jitter buffer init delay in msec.   
     81                                         (-1 for default).                  */ 
     82    int                 jb_min_pre; /**< Jitter buffer minimum prefetch 
     83                                         delay in msec (-1 for default).    */ 
     84    int                 jb_max_pre; /**< Jitter buffer maximum prefetch 
     85                                         delay in msec (-1 for default).    */ 
    8086    int                 jb_max;     /**< Jitter buffer max delay in msec.   */ 
    8187}; 
     88 
     89 
     90/** 
     91 * @see pjmedia_stream_info. 
     92 */ 
     93typedef struct pjmedia_stream_info pjmedia_stream_info; 
     94 
     95 
     96/** 
     97 * Opaque declaration for media stream. 
     98 */ 
     99typedef struct pjmedia_stream pjmedia_stream; 
    82100 
    83101 
Note: See TracChangeset for help on using the changeset viewer.