Ignore:
Timestamp:
Feb 23, 2009 10:21:33 AM (15 years ago)
Author:
bennylp
Message:
  • Disable EC in sound port when codec is used in sound device
  • Added log verbosity in wmme_dev.c
  • Tested aps-direct with WMME
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/aps-direct/pjmedia/src/pjmedia-audiodev/wmme_dev.c

    r2471 r2474  
    584584 
    585585    /* Done setting up play device. */ 
    586     PJ_LOG(5, (THIS_FILE,  
     586    PJ_LOG(4, (THIS_FILE,  
    587587               " WaveAPI Sound player \"%s\" initialized (" 
    588588               "format=%s, clock_rate=%d, " 
     
    664664 
    665665    /* Done setting up play device. */ 
    666     PJ_LOG(5,(THIS_FILE,  
     666    PJ_LOG(4,(THIS_FILE,  
    667667        " WaveAPI Sound recorder \"%s\" initialized " 
    668668        "(format=%s, clock_rate=%d, " 
     
    789789 
    790790                /* Get frame from application. */ 
    791                 PJ_LOG(5,(THIS_FILE, "xxx %u play_cb", play_cnt++)); 
     791                //PJ_LOG(5,(THIS_FILE, "xxx %u play_cb", play_cnt++)); 
    792792                status = (*strm->play_cb)(strm->user_data, frame); 
    793793 
     
    934934 
    935935                /* Call callback */ 
    936                 PJ_LOG(5,(THIS_FILE, "xxx %u rec_cb", rec_cnt++)); 
     936                //PJ_LOG(5,(THIS_FILE, "xxx %u rec_cb", rec_cnt++)); 
    937937                status = (*strm->rec_cb)(strm->user_data, frame); 
    938938                if (status != PJ_SUCCESS) 
     
    11981198            return CONVERT_MM_ERROR(mr); 
    11991199        } 
    1200         PJ_LOG(5,(THIS_FILE, "WMME playback stream started")); 
     1200        PJ_LOG(4,(THIS_FILE, "WMME playback stream started")); 
    12011201    } 
    12021202 
     
    12071207            return CONVERT_MM_ERROR(mr); 
    12081208        } 
    1209         PJ_LOG(5,(THIS_FILE, "WMME capture stream started")); 
     1209        PJ_LOG(4,(THIS_FILE, "WMME capture stream started")); 
    12101210    } 
    12111211 
     
    12271227            return CONVERT_MM_ERROR(mr); 
    12281228        } 
    1229         PJ_LOG(5,(THIS_FILE, "Stopped WMME playback stream")); 
     1229        PJ_LOG(4,(THIS_FILE, "Stopped WMME playback stream")); 
    12301230    } 
    12311231 
     
    12361236            return CONVERT_MM_ERROR(mr); 
    12371237        } 
    1238         PJ_LOG(5,(THIS_FILE, "Stopped WMME capture stream")); 
     1238        PJ_LOG(4,(THIS_FILE, "Stopped WMME capture stream")); 
    12391239    } 
    12401240 
Note: See TracChangeset for help on using the changeset viewer.