timefilter.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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 "config.h"
  25. #include "avformat.h"
  26. #include "timefilter.h"
  27. struct TimeFilter {
  28. /// Delay Locked Loop data. These variables refer to mathematical
  29. /// concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
  30. double cycle_time;
  31. double feedback2_factor;
  32. double feedback3_factor;
  33. double clock_period;
  34. int count;
  35. };
  36. TimeFilter * ff_timefilter_new(double clock_period, double feedback2_factor, double feedback3_factor)
  37. {
  38. TimeFilter *self = av_mallocz(sizeof(TimeFilter));
  39. self->clock_period = clock_period;
  40. self->feedback2_factor = feedback2_factor;
  41. self->feedback3_factor = feedback3_factor;
  42. return self;
  43. }
  44. void ff_timefilter_destroy(TimeFilter *self)
  45. {
  46. av_freep(&self);
  47. }
  48. void ff_timefilter_reset(TimeFilter *self)
  49. {
  50. self->count = 0;
  51. }
  52. double ff_timefilter_update(TimeFilter *self, double system_time, double period)
  53. {
  54. self->count++;
  55. if (self->count==1) {
  56. /// init loop
  57. self->cycle_time = system_time;
  58. } else {
  59. double loop_error;
  60. self->cycle_time += self->clock_period * period;
  61. /// calculate loop error
  62. loop_error = system_time - self->cycle_time;
  63. /// update loop
  64. self->cycle_time += FFMAX(self->feedback2_factor, 1.0/(self->count)) * loop_error;
  65. self->clock_period += self->feedback3_factor * loop_error / period;
  66. }
  67. return self->cycle_time;
  68. }
  69. #ifdef TEST
  70. #include "libavutil/lfg.h"
  71. #define LFG_MAX ((1LL << 32) - 1)
  72. #undef printf
  73. int main(void)
  74. {
  75. AVLFG prng;
  76. double n0,n1;
  77. #define SAMPLES 1000
  78. double ideal[SAMPLES];
  79. double samples[SAMPLES];
  80. #if 1
  81. for(n0= 0; n0<40; n0=2*n0+1){
  82. for(n1= 0; n1<10; n1=2*n1+1){
  83. #else
  84. {{
  85. n0=7;
  86. n1=1;
  87. #endif
  88. double best_error= 1000000000;
  89. double bestpar0=1;
  90. double bestpar1=0.001;
  91. int better, i;
  92. av_lfg_init(&prng, 123);
  93. for(i=0; i<SAMPLES; i++){
  94. ideal[i] = 10 + i + n1*i/(1000);
  95. samples[i] = ideal[i] + n0 * (av_lfg_get(&prng) - LFG_MAX / 2)
  96. / (LFG_MAX * 10LL);
  97. }
  98. do{
  99. double par0, par1;
  100. better=0;
  101. for(par0= bestpar0*0.8; par0<=bestpar0*1.21; par0+=bestpar0*0.05){
  102. for(par1= bestpar1*0.8; par1<=bestpar1*1.21; par1+=bestpar1*0.05){
  103. double error=0;
  104. TimeFilter *tf= ff_timefilter_new(1, par0, par1);
  105. for(i=0; i<SAMPLES; i++){
  106. double filtered;
  107. filtered= ff_timefilter_update(tf, samples[i], 1);
  108. error += (filtered - ideal[i]) * (filtered - ideal[i]);
  109. }
  110. ff_timefilter_destroy(tf);
  111. if(error < best_error){
  112. best_error= error;
  113. bestpar0= par0;
  114. bestpar1= par1;
  115. better=1;
  116. }
  117. }
  118. }
  119. }while(better);
  120. #if 0
  121. double lastfil=9;
  122. TimeFilter *tf= ff_timefilter_new(1, bestpar0, bestpar1);
  123. for(i=0; i<SAMPLES; i++){
  124. double filtered;
  125. filtered= ff_timefilter_update(tf, samples[i], 1);
  126. printf("%f %f %f %f\n", i - samples[i] + 10, filtered - samples[i], samples[FFMAX(i, 1)] - samples[FFMAX(i-1, 0)], filtered - lastfil);
  127. lastfil= filtered;
  128. }
  129. ff_timefilter_destroy(tf);
  130. #else
  131. printf(" [%f %f %9f]", bestpar0, bestpar1, best_error);
  132. #endif
  133. }
  134. printf("\n");
  135. }
  136. return 0;
  137. }
  138. #endif