Ignore:
Timestamp:
Apr 7, 2007 4:01:41 PM (17 years ago)
Author:
bennylp
Message:

Changed resample to use speex (for now)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/split-3rd-party/pjmedia/include/pjmedia/resample.h

    r974 r1171  
    6767 *                              because temporary buffer needs to be created. 
    6868 * @param large_filter          If true, large filter size will be used. 
     69 * @param channel_count         Number of channels. 
    6970 * @param rate_in               Clock rate of the input samples. 
    7071 * @param rate_out              Clock rate of the output samples. 
     
    7778                                             pj_bool_t high_quality, 
    7879                                             pj_bool_t large_filter, 
     80                                             unsigned channel_count, 
    7981                                             unsigned rate_in, 
    8082                                             unsigned rate_out, 
     
    106108PJ_DECL(unsigned) pjmedia_resample_get_input_size(pjmedia_resample *resample); 
    107109 
     110 
     111/** 
     112 * Destroy the resample. 
     113 * 
     114 * @param resample              The resample session. 
     115 */ 
     116PJ_DECL(void) pjmedia_resample_destroy(pjmedia_resample *resample); 
    108117 
    109118/** 
Note: See TracChangeset for help on using the changeset viewer.