mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user