Changeset 9a972b51 in ffmpeg


Ignore:
Timestamp:
Dec 18, 2011, 1:22:13 PM (13 years ago)
Author:
Carl Eugen Hoyos <cehoyos@ag.or.at>
Branches:
master
Children:
b9d8af03
Parents:
290e7eb
Message:

Cosmetics: Fix indentation after last commit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libavcodec/acelp_vectors.c

    r290e7eb r9a972b51  
    239239
    240240        if (in->pitch_lag > 0)
    241         do {
    242             out[x] += y;
    243             y *= in->pitch_fac;
    244             x += in->pitch_lag;
    245         } while (x < size && repeats);
     241            do {
     242                out[x] += y;
     243                y *= in->pitch_fac;
     244                x += in->pitch_lag;
     245            } while (x < size && repeats);
    246246    }
    247247}
     
    255255
    256256        if (in->pitch_lag > 0)
    257         do {
    258             out[x] = 0.0;
    259             x += in->pitch_lag;
    260         } while (x < size && repeats);
    261     }
    262 }
     257            do {
     258                out[x] = 0.0;
     259                x += in->pitch_lag;
     260            } while (x < size && repeats);
     261    }
     262}
Note: See TracChangeset for help on using the changeset viewer.