Changeset 9a972b51 in ffmpeg
- Timestamp:
- Dec 18, 2011, 1:22:13 PM (13 years ago)
- Branches:
- master
- Children:
- b9d8af03
- Parents:
- 290e7eb
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libavcodec/acelp_vectors.c
r290e7eb r9a972b51 239 239 240 240 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); 246 246 } 247 247 } … … 255 255 256 256 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.