comparison ac3enc.c @ 9007:043574c5c153 libavcodec

Add missing av_cold in static init/close functions. Patch by Daniel Verkamp daniel at drv dot nu.
author stefano
date Sun, 22 Feb 2009 13:48:55 +0000
parents e9d9d946f213
children 8b977d664424
comparison
equal deleted inserted replaced
9006:37ac731fe32c 9007:043574c5c153
86 86
87 typedef struct IComplex { 87 typedef struct IComplex {
88 short re,im; 88 short re,im;
89 } IComplex; 89 } IComplex;
90 90
91 static void fft_init(int ln) 91 static av_cold void fft_init(int ln)
92 { 92 {
93 int i, n; 93 int i, n;
94 float alpha; 94 float alpha;
95 95
96 n = 1 << ln; 96 n = 1 << ln;