summaryrefslogtreecommitdiff
path: root/libavcodec/aaccoder.c
diff options
context:
space:
mode:
authorAlex Converse <alex.converse@gmail.com>2009-09-21 03:42:54 +0000
committerAlex Converse <alex.converse@gmail.com>2009-09-21 03:42:54 +0000
commit06d6b962e56a791b701ab5e4f09eecfab2985654 (patch)
tree407355c2ef8208c63c9ef75300e7b0eb103b6e35 /libavcodec/aaccoder.c
parenta71e9b62546e4467751c0219869a7f6d004a5986 (diff)
Cosmetics: Reindent after r19943.
Originally committed as revision 19944 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/aaccoder.c')
-rw-r--r--libavcodec/aaccoder.c20
1 files changed, 10 insertions, 10 deletions
diff --git a/libavcodec/aaccoder.c b/libavcodec/aaccoder.c
index 4f0e58d047..b32c854722 100644
--- a/libavcodec/aaccoder.c
+++ b/libavcodec/aaccoder.c
@@ -174,11 +174,11 @@ static float quantize_band_cost(struct AACEncContext *s, const float *in,
float t = fabsf(in[i+k]);
float di;
if (vec[k] == 64.0f) { //FIXME: slow
- //do not code with escape sequence small values
- if (t < 39.0f*IQ) {
- rd = INFINITY;
- break;
- }
+ //do not code with escape sequence small values
+ if (t < 39.0f*IQ) {
+ rd = INFINITY;
+ break;
+ }
if (t >= CLIPPED_ESCAPE) {
di = t - CLIPPED_ESCAPE;
curbits += 21;
@@ -289,11 +289,11 @@ static void quantize_and_encode_band(struct AACEncContext *s, PutBitContext *pb,
float t = fabsf(in[i+k]);
float di;
if (vec[k] == 64.0f) { //FIXME: slow
- //do not code with escape sequence small values
- if (t < 39.0f*IQ) {
- rd = INFINITY;
- break;
- }
+ //do not code with escape sequence small values
+ if (t < 39.0f*IQ) {
+ rd = INFINITY;
+ break;
+ }
if (t >= CLIPPED_ESCAPE) {
di = t - CLIPPED_ESCAPE;
curbits += 21;