Commit 06d6b962 authored by Alex Converse's avatar Alex Converse

Cosmetics: Reindent after r19943.

Originally committed as revision 19944 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent a71e9b62
...@@ -174,11 +174,11 @@ static float quantize_band_cost(struct AACEncContext *s, const float *in, ...@@ -174,11 +174,11 @@ static float quantize_band_cost(struct AACEncContext *s, const float *in,
float t = fabsf(in[i+k]); float t = fabsf(in[i+k]);
float di; float di;
if (vec[k] == 64.0f) { //FIXME: slow if (vec[k] == 64.0f) { //FIXME: slow
//do not code with escape sequence small values //do not code with escape sequence small values
if (t < 39.0f*IQ) { if (t < 39.0f*IQ) {
rd = INFINITY; rd = INFINITY;
break; break;
} }
if (t >= CLIPPED_ESCAPE) { if (t >= CLIPPED_ESCAPE) {
di = t - CLIPPED_ESCAPE; di = t - CLIPPED_ESCAPE;
curbits += 21; curbits += 21;
...@@ -289,11 +289,11 @@ static void quantize_and_encode_band(struct AACEncContext *s, PutBitContext *pb, ...@@ -289,11 +289,11 @@ static void quantize_and_encode_band(struct AACEncContext *s, PutBitContext *pb,
float t = fabsf(in[i+k]); float t = fabsf(in[i+k]);
float di; float di;
if (vec[k] == 64.0f) { //FIXME: slow if (vec[k] == 64.0f) { //FIXME: slow
//do not code with escape sequence small values //do not code with escape sequence small values
if (t < 39.0f*IQ) { if (t < 39.0f*IQ) {
rd = INFINITY; rd = INFINITY;
break; break;
} }
if (t >= CLIPPED_ESCAPE) { if (t >= CLIPPED_ESCAPE) {
di = t - CLIPPED_ESCAPE; di = t - CLIPPED_ESCAPE;
curbits += 21; curbits += 21;
......
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