Ignore:
Timestamp:
Feb 22, 2009 12:00:12 PM (15 years ago)
Author:
bennylp
Message:
  • New convention about default audio device ID (now there is different ID for default capture/playback device. It should be backward compatible)
  • Fixed crash if sound port is unable to open sound device
  • Testing with the switchboard
File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/projects/aps-direct/pjmedia/include/pjmedia-audiodev/audiodev_imp.h

    r2468 r2469  
    101101struct pjmedia_aud_dev_factory 
    102102{ 
    103     /** Internal data to be initialized by the framework. */ 
     103    /** Internal data to be initialized by audio subsystem. */ 
    104104    struct { 
    105         unsigned    id; 
    106     } internal; 
     105        /** Driver index */ 
     106        unsigned drv_idx; 
     107    } sys; 
    107108 
    108109    /** Operations */ 
     
    159160struct pjmedia_aud_stream 
    160161{ 
    161     /** Factory id (internal) */ 
    162     unsigned factory_id; 
     162    /** Internal data to be initialized by audio subsystem */ 
     163    struct { 
     164        /** Driver index */ 
     165        unsigned drv_idx; 
     166    } sys; 
    163167 
    164168    /** Operations */ 
Note: See TracChangeset for help on using the changeset viewer.