aboutsummaryrefslogtreecommitdiffstats
path: root/formats
diff options
context:
space:
mode:
Diffstat (limited to 'formats')
-rwxr-xr-xformats/msgsm.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/formats/msgsm.h b/formats/msgsm.h
index de0464a8b..ec12161c1 100755
--- a/formats/msgsm.h
+++ b/formats/msgsm.h
@@ -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;