Ignore:
Timestamp:
Feb 20, 2006 1:28:25 AM (18 years ago)
Author:
bennylp
Message:

Added conference bridge prototype

File:
1 edited

Legend:

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

    r176 r203  
    3535 
    3636/* Algorithm prototypes. */ 
    37 static unsigned char linear2alaw(int            pcm_val);   /* 2's complement (16-bit range) */ 
    38 static int           alaw2linear(unsigned char  a_val); 
    39 static unsigned char linear2ulaw(int            pcm_val); 
    40 static int           ulaw2linear(unsigned char  u_val); 
     37unsigned char linear2alaw(int           pcm_val);   /* 2's complement (16-bit range) */ 
     38int           alaw2linear(unsigned char a_val); 
     39unsigned char linear2ulaw(int           pcm_val); 
     40int           ulaw2linear(unsigned char u_val); 
    4141 
    4242/* Prototypes for G711 factory */ 
     
    594594 * John Wiley & Sons, pps 98-111 and 472-476. 
    595595 */ 
    596 static unsigned char 
     596unsigned char 
    597597linear2ulaw( 
    598598        int             pcm_val)        /* 2's complement (16-bit range) */ 
Note: See TracChangeset for help on using the changeset viewer.