comparison lls.h @ 392:d0f3bb6e367e libavutil

Add FFMPEG_ prefix to all multiple inclusion guards.
author diego
date Wed, 17 Oct 2007 09:37:46 +0000
parents f13e5473611e
children bd4052d9050c
comparison
equal deleted inserted replaced
391:997894c973e2 392:d0f3bb6e367e
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 LLS_H 23 #ifndef FFMPEG_LLS_H
24 #define LLS_H 24 #define FFMPEG_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 45 #endif /* FFMPEG_LLS_H */