Repair // comments to /* */ comments (bug #3347)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4806 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-01-15 23:48:12 +00:00
parent df4a69f7ce
commit 160c04b793
32 changed files with 330 additions and 330 deletions

View File

@@ -229,11 +229,11 @@ static inline void conv66(gsm_byte * d, wav_byte * c) {
sr = sr >> 4;
*c = sr >> 8;
frame_chain = *c;
readGSM_33(d+33);// puts all the parameters into LARc etc.
readGSM_33(d+33); /* puts all the parameters into LARc etc. */
sr = 0;
// sr = (sr >> 4 )|( s->frame_chain << 12);
/* sr = (sr >> 4 )|( s->frame_chain << 12); */
sr = (sr >> 4 )|( frame_chain << 12);
sr = (sr >> 6 )|( LARc[0] << 10);
@@ -570,7 +570,7 @@ static inline void conv65( wav_byte * c, gsm_byte * d){
frame_chain = sr & 0xf;
writeGSM_33(d);// LARc etc. -> array of 33 GSM bytes
writeGSM_33(d);/* LARc etc. -> array of 33 GSM bytes */
sr = frame_chain;