[xiph-commits] r7127 - trunk/speex/libspeex

conrad at dactyl.lonelymoon.com conrad
Wed Jul 14 18:38:53 PDT 2004


Author: conrad
Date: Wed Jul 14 18:38:53 2004
New Revision: 7127

Modified:
trunk/speex/libspeex/modes_noglobals.c
Log:
remove empty statements which codewarrior complains about.
patch from Colin Ward.


Modified: trunk/speex/libspeex/modes_noglobals.c
===================================================================
--- trunk/speex/libspeex/modes_noglobals.c	2004-07-14 23:49:02 UTC (rev 7126)
+++ trunk/speex/libspeex/modes_noglobals.c	2004-07-15 01:38:51 UTC (rev 7127)
@@ -298,7 +298,7 @@
7,
7
);
-};
+}

/* Parameters for Long-Term Prediction (LTP)*/
static const ltp_params * ltp_params_vlbr (void)
@@ -308,7 +308,7 @@
5,
0
);
-};
+}

/* Parameters for Long-Term Prediction (LTP)*/
static const ltp_params * ltp_params_lbr (void)
@@ -318,7 +318,7 @@
5,
7
);
-};
+}

/* Parameters for Long-Term Prediction (LTP)*/
static const ltp_params * ltp_params_med (void)
@@ -328,7 +328,7 @@
5,
7
);
-};
+}

/* Split-VQ innovation parameters for very low bit-rate narrowband */
static const split_cb_params * split_cb_nb_vlbr (void)
@@ -340,7 +340,7 @@
4,               /*shape_bits*/
0
);
-};
+}

/* Split-VQ innovation parameters for very low bit-rate narrowband */
static const split_cb_params * split_cb_nb_ulbr (void)
@@ -352,7 +352,7 @@
5,               /*shape_bits*/
0
);
-};
+}

/* Split-VQ innovation parameters for low bit-rate narrowband */
static const split_cb_params * split_cb_nb_lbr (void)
@@ -364,7 +364,7 @@
5,               /*shape_bits*/
0
);
-};
+}


/* Split-VQ innovation parameters narrowband */
@@ -377,7 +377,7 @@
6,               /*shape_bits*/
0
);
-};
+}

/* Split-VQ innovation parameters narrowband */
static const split_cb_params * split_cb_nb_med (void)
@@ -389,7 +389,7 @@
7,               /*shape_bits*/
0
);
-};
+}

/* Split-VQ innovation for low-band wideband */
static const split_cb_params * split_cb_sb (void)
@@ -401,7 +401,7 @@
8,               /*shape_bits*/
0
);
-};
+}

/* Split-VQ innovation for high-band wideband */
static const split_cb_params * split_cb_high (void)
@@ -413,7 +413,7 @@
7,               /*shape_bits*/
1
);
-};
+}


/* Split-VQ innovation for high-band wideband */
@@ -426,7 +426,7 @@
5,               /*shape_bits*/
0
);
-};
+}

/* 2150 bps "vocoder-like" mode for comfort noise */
static const SpeexSubmode * nb_submode1 (void)
@@ -454,7 +454,7 @@
#endif
43
);
-};
+}

/* 3.95 kbps very low bit-rate mode */
static const SpeexSubmode * nb_submode8 (void)
@@ -487,7 +487,7 @@
#endif
79
);
-};
+}

/* 5.95 kbps very low bit-rate mode */
static const SpeexSubmode * nb_submode2 (void)
@@ -515,7 +515,7 @@
#endif
119
);
-};
+}

/* 8 kbps low bit-rate mode */
static const SpeexSubmode * nb_submode3 (void)
@@ -543,7 +543,7 @@
#endif
160
);
-};
+}

/* 11 kbps medium bit-rate mode */
static const SpeexSubmode * nb_submode4 (void)
@@ -571,7 +571,7 @@
#endif
220
);
-};
+}

/* 15 kbps high bit-rate mode */
static const SpeexSubmode * nb_submode5 (void)
@@ -599,7 +599,7 @@
#endif
300
);
-};
+}

/* 18.2 high bit-rate mode */
static const SpeexSubmode * nb_submode6 (void)
@@ -627,7 +627,7 @@
#endif
364
);
-};
+}

/* 24.6 kbps high bit-rate mode */
static const SpeexSubmode * nb_submode7 (void)
@@ -655,7 +655,7 @@
#endif
492
);
-};
+}


/* Default mode for narrowband */
@@ -664,7 +664,6 @@
const SpeexSubmode ** submodes;
int quality_map[11] = {1, 8, 2, 3, 3, 4, 4, 5, 5, 6, 7};
const SpeexNBMode * ret;
-  int i;

submodes = (const SpeexSubmode **)
speex_alloc (sizeof (SpeexSubmode *) * SB_SUBMODES);
@@ -724,7 +723,7 @@
speex_free (submodes);

return NULL;
-};
+}


/* Default mode for narrowband */
@@ -750,7 +749,7 @@
&nb_encoder_ctl,
&nb_decoder_ctl
);
-};
+}

void speex_nb_mode_free (const SpeexMode * mode)
{
@@ -785,7 +784,7 @@
#endif
36
);
-};
+}


static const SpeexSubmode * wb_submode2 (void)
@@ -813,7 +812,7 @@
#endif
112
);
-};
+}


static const SpeexSubmode * wb_submode3 (void)
@@ -842,7 +841,7 @@
#endif
192
);
-};
+}

static const SpeexSubmode * wb_submode4 (void)
{
@@ -869,7 +868,7 @@
#endif
352
);
-};
+}


/* Split-band wideband CELP mode*/
@@ -934,7 +933,7 @@
speex_free (submodes);

return NULL;
-};
+}

static void
sb_wb_mode_free (const SpeexSBMode * mode)
@@ -964,7 +963,7 @@
&sb_encoder_ctl,
&sb_decoder_ctl
);
-};
+}

void speex_wb_mode_free (const SpeexMode * mode)
{
@@ -1032,7 +1031,7 @@
speex_free (submodes);

return NULL;
-};
+}

void sb_uwb_mode_free (const SpeexSBMode * mode)
{
@@ -1062,7 +1061,7 @@
&sb_encoder_ctl,
&sb_decoder_ctl
);
-};
+}

void speex_uwb_mode_free (const SpeexMode * mode)
{



More information about the commits mailing list