Trivial, Cosmetics

Originally committed as revision 15905 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1b321c5c
...@@ -176,7 +176,7 @@ static int decode_lspf(QCELPContext *q, float *lspf) ...@@ -176,7 +176,7 @@ static int decode_lspf(QCELPContext *q, float *lspf)
*/ */
static int codebook_sanity_check_for_rate_quarter(const uint8_t *cbgain) static int codebook_sanity_check_for_rate_quarter(const uint8_t *cbgain)
{ {
int i, prev_diff=0; int i, prev_diff=0;
for(i=1; i<5; i++) for(i=1; i<5; i++)
{ {
...@@ -186,8 +186,8 @@ static int codebook_sanity_check_for_rate_quarter(const uint8_t *cbgain) ...@@ -186,8 +186,8 @@ static int codebook_sanity_check_for_rate_quarter(const uint8_t *cbgain)
else if(FFABS(diff - prev_diff) > 12) else if(FFABS(diff - prev_diff) > 12)
return -1; return -1;
prev_diff = diff; prev_diff = diff;
} }
return 0; return 0;
} }
/** /**
......
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