Commit e19f9952 authored by Diego Biurrun's avatar Diego Biurrun

Fix bandwith vs. bandwiDth typo.

Originally committed as revision 18804 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent e131922e
...@@ -557,6 +557,6 @@ static const double qcelp_rnd_fir_coefs[11] = { ...@@ -557,6 +557,6 @@ static const double qcelp_rnd_fir_coefs[11] = {
* *
* TIA/EIA/IS-733 2.4.3.3.6 6 * TIA/EIA/IS-733 2.4.3.3.6 6
*/ */
#define QCELP_BANDWITH_EXPANSION_COEFF 0.9883 #define QCELP_BANDWIDTH_EXPANSION_COEFF 0.9883
#endif /* AVCODEC_QCELPDATA_H */ #endif /* AVCODEC_QCELPDATA_H */
...@@ -597,7 +597,7 @@ static void apply_pitch_filters(QCELPContext *q, float *cdn_vector) ...@@ -597,7 +597,7 @@ static void apply_pitch_filters(QCELPContext *q, float *cdn_vector)
* @param lspf line spectral pair frequencies * @param lspf line spectral pair frequencies
* @param lpc linear predictive coding coefficients * @param lpc linear predictive coding coefficients
* *
* @note: bandwith_expansion_coeff could be precalculated into a table * @note: bandwidth_expansion_coeff could be precalculated into a table
* but it seems to be slower on x86 * but it seems to be slower on x86
* *
* TIA/EIA/IS-733 2.4.3.3.5 * TIA/EIA/IS-733 2.4.3.3.5
...@@ -605,7 +605,7 @@ static void apply_pitch_filters(QCELPContext *q, float *cdn_vector) ...@@ -605,7 +605,7 @@ static void apply_pitch_filters(QCELPContext *q, float *cdn_vector)
static void lspf2lpc(const float *lspf, float *lpc) static void lspf2lpc(const float *lspf, float *lpc)
{ {
double lsf[10]; double lsf[10];
double bandwith_expansion_coeff = QCELP_BANDWITH_EXPANSION_COEFF; double bandwidth_expansion_coeff = QCELP_BANDWIDTH_EXPANSION_COEFF;
int i; int i;
for (i=0; i<10; i++) for (i=0; i<10; i++)
...@@ -615,8 +615,8 @@ static void lspf2lpc(const float *lspf, float *lpc) ...@@ -615,8 +615,8 @@ static void lspf2lpc(const float *lspf, float *lpc)
for (i=0; i<10; i++) for (i=0; i<10; i++)
{ {
lpc[i] *= bandwith_expansion_coeff; lpc[i] *= bandwidth_expansion_coeff;
bandwith_expansion_coeff *= QCELP_BANDWITH_EXPANSION_COEFF; bandwidth_expansion_coeff *= QCELP_BANDWIDTH_EXPANSION_COEFF;
} }
} }
......
...@@ -68,7 +68,7 @@ typedef struct { ...@@ -68,7 +68,7 @@ typedef struct {
* invalid if broadcasting */ * invalid if broadcasting */
uint32_t max_pktsize; /**< shall be the same as for min_pktsize uint32_t max_pktsize; /**< shall be the same as for min_pktsize
* invalid if broadcasting */ * invalid if broadcasting */
uint32_t max_bitrate; /**< bandwith of stream in bps uint32_t max_bitrate; /**< bandwidth of stream in bps
* should be the sum of bitrates of the * should be the sum of bitrates of the
* individual media streams */ * individual media streams */
} ASFMainHeader; } ASFMainHeader;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment