Ignore:
Timestamp:
Apr 27, 2006 10:36:40 PM (18 years ago)
Author:
bennylp
Message:

Initial support for stereo codecs, and added L16 codecs. Also better handling for case remote media is restarted

File:
1 edited

Legend:

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

    r321 r411  
    7878    unsigned        pt;                 /**< Payload type (can be dynamic). */ 
    7979    pj_str_t        encoding_name;      /**< Encoding name.                 */ 
    80     unsigned        sample_rate;        /**< Sampling rate.                 */ 
     80    unsigned        clock_rate;         /**< Sampling rate.                 */ 
    8181    unsigned        channel_count;      /**< Number of channels.            */ 
    8282    unsigned        bits_per_sample;    /**< Bits/sample                    */ 
     
    102102}; 
    103103 
     104 
     105/**  
     106 * @see pjmedia_frame_type 
     107 */ 
     108typedef enum pjmedia_frame_type pjmedia_frame_type; 
     109 
     110 
    104111/**  
    105112 * This structure describes a media frame.  
     
    112119    pj_timestamp         timestamp; /**< Frame timestamp.           */ 
    113120}; 
     121 
     122 
     123/**  
     124 * @see pjmedia_frame 
     125 */ 
     126typedef struct pjmedia_frame pjmedia_frame; 
     127 
    114128 
    115129/** 
Note: See TracChangeset for help on using the changeset viewer.