timefilter.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /*
  2. * Delay Locked Loop based time filter
  3. * Copyright (c) 2009 Samalyse
  4. * Copyright (c) 2009 Michael Niedermayer
  5. * Author: Olivier Guilyardi <olivier samalyse com>
  6. * Michael Niedermayer <michaelni gmx at>
  7. *
  8. * This file is part of FFmpeg.
  9. *
  10. * FFmpeg is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU Lesser General Public
  12. * License as published by the Free Software Foundation; either
  13. * version 2.1 of the License, or (at your option) any later version.
  14. *
  15. * FFmpeg is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * Lesser General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Lesser General Public
  21. * License along with FFmpeg; if not, write to the Free Software
  22. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  23. */
  24. #include "libavutil/common.h"
  25. #include "libavutil/mem.h"
  26. #include "config.h"
  27. #include "timefilter.h"
  28. struct TimeFilter {
  29. /// Delay Locked Loop data. These variables refer to mathematical
  30. /// concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
  31. double cycle_time;
  32. double feedback2_factor;
  33. double feedback3_factor;
  34. double clock_period;
  35. int count;
  36. };
  37. /* 1 - exp(-x) using a 3-order power series */
  38. static double qexpneg(double x)
  39. {
  40. return 1 - 1 / (1 + x * (1 + x / 2 * (1 + x / 3)));
  41. }
  42. TimeFilter *ff_timefilter_new(double time_base,
  43. double period,
  44. double bandwidth)
  45. {
  46. TimeFilter *self = av_mallocz(sizeof(TimeFilter));
  47. double o = 2 * M_PI * bandwidth * period * time_base;
  48. self->clock_period = time_base;
  49. self->feedback2_factor = qexpneg(M_SQRT2 * o);
  50. self->feedback3_factor = qexpneg(o * o) / period;
  51. return self;
  52. }
  53. void ff_timefilter_destroy(TimeFilter *self)
  54. {
  55. av_freep(&self);
  56. }
  57. void ff_timefilter_reset(TimeFilter *self)
  58. {
  59. self->count = 0;
  60. }
  61. double ff_timefilter_update(TimeFilter *self, double system_time, double period)
  62. {
  63. self->count++;
  64. if (self->count == 1) {
  65. /// init loop
  66. self->cycle_time = system_time;
  67. } else {
  68. double loop_error;
  69. self->cycle_time += self->clock_period * period;
  70. /// calculate loop error
  71. loop_error = system_time - self->cycle_time;
  72. /// update loop
  73. self->cycle_time += FFMAX(self->feedback2_factor, 1.0 / self->count) * loop_error;
  74. self->clock_period += self->feedback3_factor * loop_error;
  75. }
  76. return self->cycle_time;
  77. }
  78. double ff_timefilter_eval(TimeFilter *self, double delta)
  79. {
  80. return self->cycle_time + self->clock_period * delta;
  81. }
  82. #ifdef TEST
  83. #include "libavutil/lfg.h"
  84. #define LFG_MAX ((1LL << 32) - 1)
  85. #undef printf
  86. int main(void)
  87. {
  88. AVLFG prng;
  89. double n0, n1;
  90. #define SAMPLES 1000
  91. double ideal[SAMPLES];
  92. double samples[SAMPLES];
  93. double samplet[SAMPLES];
  94. #if 1
  95. for (n0 = 0; n0 < 40; n0 = 2 * n0 + 1) {
  96. for (n1 = 0; n1 < 10; n1 = 2 * n1 + 1) {
  97. #else
  98. {
  99. {
  100. n0 = 7;
  101. n1 = 1;
  102. #endif
  103. double best_error = 1000000000;
  104. double bestpar0 = 1;
  105. double bestpar1 = 1;
  106. int better, i;
  107. av_lfg_init(&prng, 123);
  108. for (i = 0; i < SAMPLES; i++) {
  109. samplet[i] = 10 + i + (av_lfg_get(&prng) < LFG_MAX/2 ? 0 : 0.999);
  110. ideal[i] = samplet[i] + n1 * i / (1000);
  111. samples[i] = ideal[i] + n0 * (av_lfg_get(&prng) - LFG_MAX / 2) / (LFG_MAX * 10LL);
  112. if(i && samples[i]<samples[i-1])
  113. samples[i]=samples[i-1]+0.001;
  114. }
  115. do {
  116. double par0, par1;
  117. better = 0;
  118. for (par0 = bestpar0 * 0.8; par0 <= bestpar0 * 1.21; par0 += bestpar0 * 0.05) {
  119. for (par1 = bestpar1 * 0.8; par1 <= bestpar1 * 1.21; par1 += bestpar1 * 0.05) {
  120. double error = 0;
  121. TimeFilter *tf = ff_timefilter_new(1, par0, par1);
  122. for (i = 0; i < SAMPLES; i++) {
  123. double filtered;
  124. filtered = ff_timefilter_update(tf, samples[i], i ? (samplet[i] - samplet[i-1]) : 1);
  125. if(filtered < 0 || filtered > 1000000000)
  126. printf("filter is unstable\n");
  127. error += (filtered - ideal[i]) * (filtered - ideal[i]);
  128. }
  129. ff_timefilter_destroy(tf);
  130. if (error < best_error) {
  131. best_error = error;
  132. bestpar0 = par0;
  133. bestpar1 = par1;
  134. better = 1;
  135. }
  136. }
  137. }
  138. } while (better);
  139. #if 0
  140. double lastfil = 9;
  141. TimeFilter *tf = ff_timefilter_new(1, bestpar0, bestpar1);
  142. for (i = 0; i < SAMPLES; i++) {
  143. double filtered;
  144. filtered = ff_timefilter_update(tf, samples[i], 1);
  145. printf("%f %f %f %f\n", i - samples[i] + 10, filtered - samples[i],
  146. samples[FFMAX(i, 1)] - samples[FFMAX(i - 1, 0)], filtered - lastfil);
  147. lastfil = filtered;
  148. }
  149. ff_timefilter_destroy(tf);
  150. #else
  151. printf(" [%f %f %9f]", bestpar0, bestpar1, best_error);
  152. #endif
  153. }
  154. printf("\n");
  155. }
  156. return 0;
  157. }
  158. #endif