Ignore:
Timestamp:
Aug 21, 2015 6:00:46 AM (9 years ago)
Author:
riza
Message:

Re #1879:

  • Implement set video codec param in PJSUA2 API
  • Fix bug in videoCodecEnum and updateCodecInfoList
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsua2/endpoint.hpp

    r5131 r5165  
    11511151     * 
    11521152     */ 
    1153     CodecParam videoCodecGetParam(const string &codec_id) const throw(Error); 
     1153    VidCodecParam getVideoCodecParam(const string &codec_id) const throw(Error); 
    11541154 
    11551155    /** 
     
    11571157     * 
    11581158     * @param codec_id  Codec ID. 
    1159      * @param param     Codec parameter to set. Set to NULL to reset 
    1160      *                  codec parameter to library default settings. 
    1161      * 
    1162      */ 
    1163     void videoCodecSetParam(const string &codec_id, 
    1164                             const CodecParam param) throw(Error); 
     1159     * @param param     Codec parameter to set. 
     1160     * 
     1161     */ 
     1162    void setVideoCodecParam(const string &codec_id, 
     1163                            const VidCodecParam &param) throw(Error); 
     1164                             
     1165    /** 
     1166     * Reset video codec parameters to library default settings. 
     1167     * 
     1168     * @param codec_id  Codec ID. 
     1169     * 
     1170     */ 
     1171    void resetVideoCodecParam(const string &codec_id) throw(Error); 
    11651172 
    11661173public: 
Note: See TracChangeset for help on using the changeset viewer.