comparison lls.h @ 567:bd4052d9050c libavutil

Globally rename the header inclusion guard names. Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_".
author stefano
date Sun, 31 Aug 2008 07:39:47 +0000
parents d0f3bb6e367e
children
comparison
equal deleted inserted replaced
566:34198f8250cf 567:bd4052d9050c
18 * You should have received a copy of the GNU Lesser General Public 18 * You should have received a copy of the GNU Lesser General Public
19 * License along with FFmpeg; if not, write to the Free Software 19 * License along with FFmpeg; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21 */ 21 */
22 22
23 #ifndef FFMPEG_LLS_H 23 #ifndef AVUTIL_LLS_H
24 #define FFMPEG_LLS_H 24 #define AVUTIL_LLS_H
25 25
26 #define MAX_VARS 32 26 #define MAX_VARS 32
27 27
28 //FIXME avoid direct access to LLSModel from outside 28 //FIXME avoid direct access to LLSModel from outside
29 29
40 void av_init_lls(LLSModel *m, int indep_count); 40 void av_init_lls(LLSModel *m, int indep_count);
41 void av_update_lls(LLSModel *m, double *param, double decay); 41 void av_update_lls(LLSModel *m, double *param, double decay);
42 void av_solve_lls(LLSModel *m, double threshold, int min_order); 42 void av_solve_lls(LLSModel *m, double threshold, int min_order);
43 double av_evaluate_lls(LLSModel *m, double *param, int order); 43 double av_evaluate_lls(LLSModel *m, double *param, int order);
44 44
45 #endif /* FFMPEG_LLS_H */ 45 #endif /* AVUTIL_LLS_H */