lls.c
Go to the documentation of this file.
1 /*
2  * linear least squares model
3  *
4  * Copyright (c) 2006 Michael Niedermayer <michaelni@gmx.at>
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * Lesser General Public License for more details.
17  *
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
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22 
23 /**
24  * @file
25  * linear least squares model
26  */
27 
28 #include <math.h>
29 #include <string.h>
30 
31 #include "version.h"
32 #include "lls.h"
33 
34 void avpriv_init_lls(LLSModel *m, int indep_count)
35 {
36  memset(m, 0, sizeof(LLSModel));
37  m->indep_count = indep_count;
38 }
39 
40 void avpriv_update_lls(LLSModel *m, double *var, double decay)
41 {
42  int i, j;
43 
44  for (i = 0; i <= m->indep_count; i++) {
45  for (j = i; j <= m->indep_count; j++) {
46  m->covariance[i][j] *= decay;
47  m->covariance[i][j] += var[i] * var[j];
48  }
49  }
50 }
51 
52 void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order)
53 {
54  int i, j, k;
55  double (*factor)[MAX_VARS + 1] = (void *) &m->covariance[1][0];
56  double (*covar) [MAX_VARS + 1] = (void *) &m->covariance[1][1];
57  double *covar_y = m->covariance[0];
58  int count = m->indep_count;
59 
60  for (i = 0; i < count; i++) {
61  for (j = i; j < count; j++) {
62  double sum = covar[i][j];
63 
64  for (k = i - 1; k >= 0; k--)
65  sum -= factor[i][k] * factor[j][k];
66 
67  if (i == j) {
68  if (sum < threshold)
69  sum = 1.0;
70  factor[i][i] = sqrt(sum);
71  } else {
72  factor[j][i] = sum / factor[i][i];
73  }
74  }
75  }
76 
77  for (i = 0; i < count; i++) {
78  double sum = covar_y[i + 1];
79 
80  for (k = i - 1; k >= 0; k--)
81  sum -= factor[i][k] * m->coeff[0][k];
82 
83  m->coeff[0][i] = sum / factor[i][i];
84  }
85 
86  for (j = count - 1; j >= min_order; j--) {
87  for (i = j; i >= 0; i--) {
88  double sum = m->coeff[0][i];
89 
90  for (k = i + 1; k <= j; k++)
91  sum -= factor[k][i] * m->coeff[j][k];
92 
93  m->coeff[j][i] = sum / factor[i][i];
94  }
95 
96  m->variance[j] = covar_y[0];
97 
98  for (i = 0; i <= j; i++) {
99  double sum = m->coeff[j][i] * covar[i][i] - 2 * covar_y[i + 1];
100 
101  for (k = 0; k < i; k++)
102  sum += 2 * m->coeff[j][k] * covar[k][i];
103 
104  m->variance[j] += m->coeff[j][i] * sum;
105  }
106  }
107 }
108 
109 double avpriv_evaluate_lls(LLSModel *m, double *param, int order)
110 {
111  int i;
112  double out = 0;
113 
114  for (i = 0; i <= order; i++)
115  out += param[i] * m->coeff[order][i];
116 
117  return out;
118 }
119 
120 #if FF_API_LLS_PRIVATE
121 void av_init_lls(LLSModel *m, int indep_count)
122 {
123  avpriv_init_lls(m, indep_count);
124 }
125 void av_update_lls(LLSModel *m, double *param, double decay)
126 {
127  avpriv_update_lls(m, param, decay);
128 }
129 void av_solve_lls(LLSModel *m, double threshold, int min_order)
130 {
131  avpriv_solve_lls(m, threshold, min_order);
132 }
133 double av_evaluate_lls(LLSModel *m, double *param, int order)
134 {
135  return avpriv_evaluate_lls(m, param, order);
136 }
137 #endif /* FF_API_LLS_PRIVATE */
138 
139 #ifdef TEST
140 
141 #include <stdio.h>
142 #include <limits.h>
143 #include "lfg.h"
144 
145 int main(void)
146 {
147  LLSModel m;
148  int i, order;
149  AVLFG lfg;
150 
151  av_lfg_init(&lfg, 1);
152  avpriv_init_lls(&m, 3);
153 
154  for (i = 0; i < 100; i++) {
155  double var[4];
156  double eval;
157 
158  var[0] = (av_lfg_get(&lfg) / (double) UINT_MAX - 0.5) * 2;
159  var[1] = var[0] + av_lfg_get(&lfg) / (double) UINT_MAX - 0.5;
160  var[2] = var[1] + av_lfg_get(&lfg) / (double) UINT_MAX - 0.5;
161  var[3] = var[2] + av_lfg_get(&lfg) / (double) UINT_MAX - 0.5;
162  avpriv_update_lls(&m, var, 0.99);
163  avpriv_solve_lls(&m, 0.001, 0);
164  for (order = 0; order < 3; order++) {
165  eval = avpriv_evaluate_lls(&m, var + 1, order);
166  printf("real:%9f order:%d pred:%9f var:%f coeffs:%f %9f %9f\n",
167  var[0], order, eval, sqrt(m.variance[order] / (i + 1)),
168  m.coeff[order][0], m.coeff[order][1],
169  m.coeff[order][2]);
170  }
171  }
172  return 0;
173 }
174 
175 #endif
Definition: lfg.h:25
void avpriv_init_lls(LLSModel *m, int indep_count)
Definition: lls.c:34
double covariance[MAX_VARS+1][MAX_VARS+1]
Definition: lls.h:36
Linear least squares model.
Definition: lls.h:35
double variance[MAX_VARS]
Definition: lls.h:38
window constants for m
double coeff[MAX_VARS][MAX_VARS]
Definition: lls.h:37
void av_solve_lls(LLSModel *m, double threshold, int min_order)
Definition: lls.c:129
integer sqrt
Definition: avutil.txt:2
void av_update_lls(LLSModel *m, double *param, double decay)
Definition: lls.c:125
Libavutil version macros.
eval(cmd)
#define MAX_VARS
Definition: lls.h:28
for k
void avpriv_solve_lls(LLSModel *m, double threshold, unsigned short min_order)
Definition: lls.c:52
static unsigned int av_lfg_get(AVLFG *c)
Get the next random unsigned 32-bit number using an ALFG.
Definition: lfg.h:38
void av_init_lls(LLSModel *m, int indep_count)
Definition: lls.c:121
synthesis window for stochastic i
static const int factor[16]
Definition: vf_pp7.c:202
av_cold void av_lfg_init(AVLFG *c, unsigned int seed)
Definition: lfg.c:30
double av_evaluate_lls(LLSModel *m, double *param, int order)
Definition: lls.c:133
printf("static const uint8_t my_array[100] = {\n")
int indep_count
Definition: lls.h:39
void INT64 INT64 count
Definition: avisynth_c.h:594
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(const uint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(const int16_t *) pi >> 8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(const int16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(const int16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(const int32_t *) pi >> 24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(const int32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(const int32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(const float *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(const float *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(const float *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(const double *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(const double *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(const double *) pi *(1U<< 31))))#define SET_CONV_FUNC_GROUP(ofmt, ifmt) static void set_generic_function(AudioConvert *ac){}void ff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enum AVSampleFormat out_fmt, enum AVSampleFormat in_fmt, int channels, int sample_rate, int apply_map){AudioConvert *ac;int in_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) return NULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt) > 2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);return NULL;}return ac;}in_planar=av_sample_fmt_is_planar(in_fmt);out_planar=av_sample_fmt_is_planar(out_fmt);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}else if(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;else ac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);return ac;}int ff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){int use_generic=1;int len=in->nb_samples;int p;if(ac->dc){av_dlog(ac->avr,"%d samples - audio_convert: %s to %s (dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));return ff_convert_dither(ac-> out
double avpriv_evaluate_lls(LLSModel *m, double *param, int order)
Definition: lls.c:109
int main(int argc, char **argv)
Definition: main.c:22
void avpriv_update_lls(LLSModel *m, double *var, double decay)
Definition: lls.c:40
for(j=16;j >0;--j)