Ignore:
Timestamp:
Jan 18, 2006 11:12:57 PM (18 years ago)
Author:
bennylp
Message:

Compiled cleanly first time for the new pjlib

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/src/pjmedia/pasound.c

    • Property svn:keywords set to Id
    r65 r121  
    6161    pj_status_t status; 
    6262 
    63     PJ_UNUSED_ARG(output) 
    64     PJ_UNUSED_ARG(timeInfo) 
     63    PJ_UNUSED_ARG(output); 
     64    PJ_UNUSED_ARG(timeInfo); 
    6565 
    6666    if (stream->quit_flag) 
     
    6868 
    6969    if (stream->thread_initialized == 0) { 
    70         stream->thread = pj_thread_register("pa_rec", stream->thread_desc); 
     70        status = pj_thread_register("pa_rec", stream->thread_desc, &stream->thread); 
    7171        stream->thread_initialized = 1; 
    7272    } 
     
    101101    unsigned size = frameCount * stream->bytes_per_sample; 
    102102 
    103     PJ_UNUSED_ARG(input) 
    104     PJ_UNUSED_ARG(timeInfo) 
     103    PJ_UNUSED_ARG(input); 
     104    PJ_UNUSED_ARG(timeInfo); 
    105105 
    106106    if (stream->quit_flag) 
     
    108108 
    109109    if (stream->thread_initialized == 0) { 
    110         stream->thread = pj_thread_register("pa_rec", stream->thread_desc); 
     110        status = pj_thread_register("pa_rec", stream->thread_desc, &stream->thread); 
    111111        stream->thread_initialized = 1; 
    112112    } 
Note: See TracChangeset for help on using the changeset viewer.