Ignore:
Timestamp:
Jun 20, 2006 3:39:07 PM (18 years ago)
Author:
bennylp
Message:

Yet again large diffs because of documentation/doxygen update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip-apps/src/samples/confbench.c

    r513 r531  
    1818 */ 
    1919 
    20 /* 
     20 
     21/** 
     22 * \page page_pjmedia_samples_confbench_c Samples: Benchmarking Conference Bridge 
     23 * 
    2124 * Benchmarking pjmedia (conference bridge+resample). For my use only, 
    2225 * and it only works in Win32. 
     26 * 
     27 * This file is pjsip-apps/src/samples/confbench.c 
     28 * 
     29 * \includelineno confbench.c 
    2330 */ 
     31 
    2432 
    2533#include <pjmedia.h> 
     
    3947 *     the port. 
    4048 */ 
    41 #define TEST_SET            SMALL_SET 
    42 #define HAS_RESAMPLE        1 
     49#define TEST_SET            LARGE_SET 
     50#define HAS_RESAMPLE        0 
    4351 
    4452 
     
    266274    } 
    267275 
     276    printf("Resampling is %s\n", (HAS_RESAMPLE?"active":"disabled")); 
     277 
    268278    /* Create Null ports */ 
     279    printf("Creating %d null ports..\n", NULL_COUNT); 
    269280    for (i=0; i<NULL_COUNT; ++i) { 
    270281        status = pjmedia_null_port_create(pool, CLOCK_RATE, 1, SAMPLES_PER_FRAME*2, 16, &nulls[i]); 
     
    276287 
    277288    /* Create sine ports. */ 
     289    printf("Creating %d sine generator ports..\n", SINE_COUNT); 
    278290    for (i=0; i<SINE_COUNT; ++i) { 
    279291        unsigned j, slot; 
     
    305317 
    306318    /* Create idle ports */ 
     319    printf("Creating %d idle ports..\n", IDLE_COUNT); 
    307320    for (i=0; i<IDLE_COUNT; ++i) { 
    308321        pjmedia_port *dummy; 
Note: See TracChangeset for help on using the changeset viewer.