Ignore:
Timestamp:
Apr 24, 2012 7:38:41 AM (12 years ago)
Author:
ming
Message:

Re #1417 (misc): Fixed output path for AEC test for iOS support.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjsip-apps/src/pjsystest/systest.c

    r3553 r4074  
    967967    } 
    968968 
    969     status = pjsua_recorder_create(pj_cstr(&tmp, AEC_REC_PATH), 0, 0, -1, 
    970                                    0, &writer_id); 
     969    status = pjsua_recorder_create( 
     970                 pj_cstr(&tmp, add_path(doc_path, AEC_REC_PATH)), 0, 0, -1, 
     971                 0, &writer_id); 
    971972    if (status != PJ_SUCCESS) { 
    972973        PJ_PERROR(1,(THIS_FILE, status, "Error writing WAV file %s", 
     
    9991000     * Play the result. 
    10001001     */ 
    1001     status = pjsua_player_create(pj_cstr(&tmp, AEC_REC_PATH), 0, &player_id); 
     1002    status = pjsua_player_create( 
     1003                 pj_cstr(&tmp, add_path(doc_path, AEC_REC_PATH)), 
     1004                 0, &player_id); 
    10021005    if (status != PJ_SUCCESS) { 
    10031006        PJ_PERROR(1,(THIS_FILE, status, "Error opening WAV file %s", AEC_REC_PATH)); 
Note: See TracChangeset for help on using the changeset viewer.