Changeset 796
- Timestamp:
- Nov 10, 2006 6:04:32 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjmedia/src/pjmedia/conference.c
r731 r796 1141 1141 static pj_uint16_t pcm2unsigned(pj_int32_t pcm) 1142 1142 { 1143 return (pj_uint16_t)(pcm + 3276 7);1143 return (pj_uint16_t)(pcm + 32768); 1144 1144 } 1145 1145 … … 1147 1147 static pj_int16_t unsigned2pcm(pj_uint32_t uns) 1148 1148 { 1149 return (pj_int16_t)(uns - 3276 7);1149 return (pj_int16_t)(uns - 32768); 1150 1150 } 1151 1151
Note: See TracChangeset
for help on using the changeset viewer.