Searched refs:LLSModel (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | lls.h | 37 typedef struct LLSModel { struct 49 void (*update_lls)(struct LLSModel *m, const double *var); argument 56 double (*evaluate_lls)(struct LLSModel *m, const double *var, int order); argument 57 } LLSModel; typedef 59 void avpriv_init_lls(LLSModel *m, int indep_count); 60 void ff_init_lls_x86(LLSModel *m); 61 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order);
|
D | lls.c | 35 static void update_lls(LLSModel *m, const double *var) in update_lls() 46 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order) in avpriv_solve_lls() 103 static double evaluate_lls(LLSModel *m, const double *param, int order) in evaluate_lls() 114 av_cold void avpriv_init_lls(LLSModel *m, int indep_count) in avpriv_init_lls() 116 memset(m, 0, sizeof(LLSModel)); in avpriv_init_lls()
|
/third_party/ffmpeg/libavutil/x86/ |
D | lls_init.c | 27 void ff_update_lls_sse2(LLSModel *m, const double *var); 28 void ff_update_lls_avx(LLSModel *m, const double *var); 29 void ff_update_lls_fma3(LLSModel *m, const double *var); 30 double ff_evaluate_lls_sse2(LLSModel *m, const double *var, int order); 32 av_cold void ff_init_lls_x86(LLSModel *m) in ff_init_lls_x86()
|
D | lls.asm | 32 struc LLSModel 52 mov id, [ctxq + LLSModel.indep_count] 131 mov countd, [ctxq + LLSModel.indep_count]
|
/third_party/ffmpeg/libavutil/tests/ |
D | lls.c | 29 LLSModel m; in main()
|
/third_party/ffmpeg/libavcodec/ |
D | lpc.h | 86 LLSModel lls_models[2];
|
D | lpc.c | 242 LLSModel *m = s->lls_models; in ff_lpc_calc_coefs()
|