Skip to content
Snippets Groups Projects
Commit ba3a2892 authored by Jean-Marc Valin's avatar Jean-Marc Valin
Browse files

MSE measurement details (no codec changes)

parent 3f9857b9
No related branches found
No related tags found
No related merge requests found
......@@ -326,7 +326,7 @@ void dump_norm_mse(void)
int i;
for (i=0;i<nbMSEBands;i++)
{
printf ("%f ", MSE[i]/MSECount[i]);
printf ("%g ", MSE[i]/MSECount[i]);
}
printf ("\n");
}
......@@ -345,7 +345,7 @@ void measure_norm_mse(const CELTMode *m, float *X, float *X0, float *bandE, floa
int j;
int c;
float g;
if (bandE0[i]<1 || (C==2 && bandE0[i+m->nbEBands]<1))
if (bandE0[i]<10 || (C==2 && bandE0[i+m->nbEBands]<1))
continue;
for (c=0;c<C;c++)
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment