Ignore:
Timestamp:
Mar 15, 2006 8:56:04 PM (18 years ago)
Author:
bennylp
Message:

Tidying up sound device, register PortAudio? error codes, and initial support for stereo sound device (untested)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjmedia/include/pjmedia/errno.h

    r222 r319  
    3131 
    3232 
     33/* 
     34 * Mapping from PortAudio error codes to pjmedia error space. 
     35 */ 
     36#define PJMEDIA_PORTAUDIO_ERRNO_START (PJMEDIA_ERRNO_START+PJ_ERRNO_SPACE_SIZE-1000) 
     37 
     38/* 
     39 * Convert PortAudio error code to PJMEDIA error code. 
     40 */ 
     41#define PJMEDIA_ERRNO_FROM_PORTAUDIO(err)   (err+PJMEDIA_PORTAUDIO_ERRNO_START) 
     42 
     43 
    3344/************************************************************ 
    3445 * GENERIC/GENERAL PJMEDIA ERRORS 
Note: See TracChangeset for help on using the changeset viewer.