Searched refs:LLSModel (Results 1 – 7 of 7) sorted by relevance
/third_party/ffmpeg/libavutil/ |
D | lls.h | 38 typedef struct LLSModel { struct 50 void (*update_lls)(struct LLSModel *m, const double *var); argument 57 double (*evaluate_lls)(struct LLSModel *m, const double *var, int order); argument 58 } LLSModel; typedef 60 void avpriv_init_lls(LLSModel *m, int indep_count); 61 void ff_init_lls_x86(LLSModel *m); 62 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order);
|
D | lls.c | 36 static void update_lls(LLSModel *m, const double *var) in update_lls() 47 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order) in avpriv_solve_lls() 104 static double evaluate_lls(LLSModel *m, const double *param, int order) in evaluate_lls() 115 av_cold void avpriv_init_lls(LLSModel *m, int indep_count) in avpriv_init_lls() 117 memset(m, 0, sizeof(LLSModel)); in avpriv_init_lls()
|
/third_party/ffmpeg/libavutil/x86/ |
D | lls_init.c | 26 void ff_update_lls_sse2(LLSModel *m, const double *var); 27 void ff_update_lls_avx(LLSModel *m, const double *var); 28 void ff_update_lls_fma3(LLSModel *m, const double *var); 29 double ff_evaluate_lls_sse2(LLSModel *m, const double *var, int order); 31 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()
|