Ignore:
Timestamp:
Aug 13, 2008 6:21:03 PM (16 years ago)
Author:
bennylp
Message:

More ticket #590: optimizations in the echo suppressor, gained more than 3x speed. Added entries in mips_test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/test/mips_test.c

    r2192 r2212  
    5252    */ 
    5353 
    54 //#   define CPU_MHZ        (2666) 
    55 //#   define CPU_IPS        (CPU_MHZ * MEGA * 3.039)    /* P4 2.6GHz    */ 
    56  
    57 #   define CPU_MHZ          700 
    58 #   define CPU_IPS          (700 * MEGA * 2.708)        /* P3 700Mhz    */ 
     54#   define CPU_MHZ          (2666) 
     55#   define CPU_IPS          (3.039 * CPU_MHZ * MEGA)    /* P4 2.6GHz    */ 
     56 
     57//#   define CPU_MHZ        700 
     58//#   define CPU_IPS        (700 * MEGA * 2.708)        /* P3 700Mhz    */ 
    5959 
    6060//#   define CPU_MHZ        180 
    6161//#   define CPU_IPS        (CPU_MHZ * MEGA * 1.1)      /* ARM926EJ-S */ 
     62 
     63//#   define CPU_MHZ        312 
     64//#   define CPU_IPS        (CPU_MHZ * MEGA * 1.282)    /* Dell Axim PDA */ 
     65 
    6266#endif 
    6367 
     
    357361 
    358362#define THIS_FILE           "mips_test.c" 
    359 #define DURATION            1000 
     363#define DURATION            5000 
    360364#define PTIME               20  /* MUST be 20! */ 
    361365#define MEGA                1000000 
     
    12641268    pj_status_t status; 
    12651269 
    1266     PJ_UNUSED_ARG(flags); 
    12671270    PJ_UNUSED_ARG(te); 
    12681271 
     
    12731276 
    12741277    status = pjmedia_echo_port_create(pool, gen_port, ec_tail_msec, 0, 
    1275                                       0, &ec_port); 
     1278                                      flags, &ec_port); 
    12761279    if (status != PJ_SUCCESS) 
    12771280        return NULL; 
     
    12881291                                   struct test_entry *te) 
    12891292{ 
     1293    flags = 0; 
    12901294    return ec_create(100, pool, clock_rate, channel_count, samples_per_frame, 
    12911295                     flags, te); 
     
    13001304                                   struct test_entry *te) 
    13011305{ 
     1306    flags = 0; 
    13021307    return ec_create(128, pool, clock_rate, channel_count, samples_per_frame, 
    13031308                     flags, te); 
     
    13121317                                   struct test_entry *te) 
    13131318{ 
     1319    flags = 0; 
    13141320    return ec_create(200, pool, clock_rate, channel_count, samples_per_frame, 
    13151321                     flags, te); 
     
    13241330                                   struct test_entry *te) 
    13251331{ 
     1332    flags = 0; 
    13261333    return ec_create(256, pool, clock_rate, channel_count, samples_per_frame, 
    13271334                     flags, te); 
     
    13371344                                   struct test_entry *te) 
    13381345{ 
     1346    flags = 0; 
    13391347    return ec_create(400, pool, clock_rate, channel_count, samples_per_frame, 
    13401348                     flags, te); 
     
    13491357                                   struct test_entry *te) 
    13501358{ 
     1359    flags = 0; 
    13511360    return ec_create(500, pool, clock_rate, channel_count, samples_per_frame, 
    13521361                     flags, te); 
     
    13611370                                   struct test_entry *te) 
    13621371{ 
     1372    flags = 0; 
    13631373    return ec_create(512, pool, clock_rate, channel_count, samples_per_frame, 
    13641374                     flags, te); 
     
    13731383                                   struct test_entry *te) 
    13741384{ 
     1385    flags = 0; 
    13751386    return ec_create(600, pool, clock_rate, channel_count, samples_per_frame, 
    13761387                     flags, te); 
     
    13851396                                   struct test_entry *te) 
    13861397{ 
     1398    flags = 0; 
     1399    return ec_create(800, pool, clock_rate, channel_count, samples_per_frame, 
     1400                     flags, te); 
     1401} 
     1402 
     1403 
     1404 
     1405/* Echo suppressor with 100ms tail length */ 
     1406static pjmedia_port* es_create_100(pj_pool_t *pool, 
     1407                                   unsigned clock_rate, 
     1408                                   unsigned channel_count, 
     1409                                   unsigned samples_per_frame, 
     1410                                   unsigned flags, 
     1411                                   struct test_entry *te) 
     1412{ 
     1413    flags = PJMEDIA_ECHO_SIMPLE; 
     1414    return ec_create(100, pool, clock_rate, channel_count, samples_per_frame, 
     1415                     flags, te); 
     1416} 
     1417 
     1418/* Echo suppressor with 128ms tail length */ 
     1419static pjmedia_port* es_create_128(pj_pool_t *pool, 
     1420                                   unsigned clock_rate, 
     1421                                   unsigned channel_count, 
     1422                                   unsigned samples_per_frame, 
     1423                                   unsigned flags, 
     1424                                   struct test_entry *te) 
     1425{ 
     1426    flags = PJMEDIA_ECHO_SIMPLE; 
     1427    return ec_create(128, pool, clock_rate, channel_count, samples_per_frame, 
     1428                     flags, te); 
     1429} 
     1430 
     1431/* Echo suppressor with 200ms tail length */ 
     1432static pjmedia_port* es_create_200(pj_pool_t *pool, 
     1433                                   unsigned clock_rate, 
     1434                                   unsigned channel_count, 
     1435                                   unsigned samples_per_frame, 
     1436                                   unsigned flags, 
     1437                                   struct test_entry *te) 
     1438{ 
     1439    flags = PJMEDIA_ECHO_SIMPLE; 
     1440    return ec_create(200, pool, clock_rate, channel_count, samples_per_frame, 
     1441                     flags, te); 
     1442} 
     1443 
     1444/* Echo suppressor with 256ms tail length */ 
     1445static pjmedia_port* es_create_256(pj_pool_t *pool, 
     1446                                   unsigned clock_rate, 
     1447                                   unsigned channel_count, 
     1448                                   unsigned samples_per_frame, 
     1449                                   unsigned flags, 
     1450                                   struct test_entry *te) 
     1451{ 
     1452    flags = PJMEDIA_ECHO_SIMPLE; 
     1453    return ec_create(256, pool, clock_rate, channel_count, samples_per_frame, 
     1454                     flags, te); 
     1455} 
     1456 
     1457 
     1458/* Echo suppressor with 400ms tail length */ 
     1459static pjmedia_port* es_create_400(pj_pool_t *pool, 
     1460                                   unsigned clock_rate, 
     1461                                   unsigned channel_count, 
     1462                                   unsigned samples_per_frame, 
     1463                                   unsigned flags, 
     1464                                   struct test_entry *te) 
     1465{ 
     1466    flags = PJMEDIA_ECHO_SIMPLE; 
     1467    return ec_create(400, pool, clock_rate, channel_count, samples_per_frame, 
     1468                     flags, te); 
     1469} 
     1470 
     1471/* Echo suppressor with 500ms tail length */ 
     1472static pjmedia_port* es_create_500(pj_pool_t *pool, 
     1473                                   unsigned clock_rate, 
     1474                                   unsigned channel_count, 
     1475                                   unsigned samples_per_frame, 
     1476                                   unsigned flags, 
     1477                                   struct test_entry *te) 
     1478{ 
     1479    flags = PJMEDIA_ECHO_SIMPLE; 
     1480    return ec_create(500, pool, clock_rate, channel_count, samples_per_frame, 
     1481                     flags, te); 
     1482} 
     1483 
     1484/* Echo suppressor with 512ms tail length */ 
     1485static pjmedia_port* es_create_512(pj_pool_t *pool, 
     1486                                   unsigned clock_rate, 
     1487                                   unsigned channel_count, 
     1488                                   unsigned samples_per_frame, 
     1489                                   unsigned flags, 
     1490                                   struct test_entry *te) 
     1491{ 
     1492    flags = PJMEDIA_ECHO_SIMPLE; 
     1493    return ec_create(512, pool, clock_rate, channel_count, samples_per_frame, 
     1494                     flags, te); 
     1495} 
     1496 
     1497/* Echo suppressor with 600ms tail length */ 
     1498static pjmedia_port* es_create_600(pj_pool_t *pool, 
     1499                                   unsigned clock_rate, 
     1500                                   unsigned channel_count, 
     1501                                   unsigned samples_per_frame, 
     1502                                   unsigned flags, 
     1503                                   struct test_entry *te) 
     1504{ 
     1505    flags = PJMEDIA_ECHO_SIMPLE; 
     1506    return ec_create(600, pool, clock_rate, channel_count, samples_per_frame, 
     1507                     flags, te); 
     1508} 
     1509 
     1510/* Echo suppressor with 800ms tail length */ 
     1511static pjmedia_port* es_create_800(pj_pool_t *pool, 
     1512                                   unsigned clock_rate, 
     1513                                   unsigned channel_count, 
     1514                                   unsigned samples_per_frame, 
     1515                                   unsigned flags, 
     1516                                   struct test_entry *te) 
     1517{ 
     1518    flags = PJMEDIA_ECHO_SIMPLE; 
    13871519    return ec_create(800, pool, clock_rate, channel_count, samples_per_frame, 
    13881520                     flags, te); 
     
    21292261        { "echo canceller 600ms tail len", OP_GET_PUT, K8|K16, &ec_create_600}, 
    21302262        { "echo canceller 800ms tail len", OP_GET_PUT, K8|K16, &ec_create_800}, 
     2263        { "echo suppressor 100ms tail len", OP_GET_PUT, K8|K16, &es_create_100}, 
     2264        { "echo suppressor 128ms tail len", OP_GET_PUT, K8|K16, &es_create_128}, 
     2265        { "echo suppressor 200ms tail len", OP_GET_PUT, K8|K16, &es_create_200}, 
     2266        { "echo suppressor 256ms tail len", OP_GET_PUT, K8|K16, &es_create_256}, 
     2267        { "echo suppressor 400ms tail len", OP_GET_PUT, K8|K16, &es_create_400}, 
     2268        { "echo suppressor 500ms tail len", OP_GET_PUT, K8|K16, &es_create_500}, 
     2269        { "echo suppressor 512ms tail len", OP_GET_PUT, K8|K16, &es_create_512}, 
     2270        { "echo suppressor 600ms tail len", OP_GET_PUT, K8|K16, &es_create_600}, 
     2271        { "echo suppressor 800ms tail len", OP_GET_PUT, K8|K16, &es_create_800}, 
    21312272        { "tone generator with single freq", OP_GET, K8|K16, &create_tonegen1}, 
    21322273        { "tone generator with dual freq", OP_GET, K8|K16, &create_tonegen2}, 
     
    21962337                    pj_elapsed_usec(&tzero, &times[1])) / 2; 
    21972338 
     2339            usec = usec / (DURATION / 1000); 
     2340 
    21982341            mips = (float)(CPU_IPS * usec / 1000000.0 / 1000000); 
    21992342            cpu_pct = (float)(100.0 * usec / 1000000); 
Note: See TracChangeset for help on using the changeset viewer.