You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

73 lines
2.2KB

  1. /*
  2. * Delay Locked Loop based time filter
  3. * Copyright (c) 2009 Samalyse
  4. * Author: Olivier Guilyardi <olivier samalyse com>
  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. #include "config.h"
  23. #include "avformat.h"
  24. #include "timefilter.h"
  25. struct TimeFilter {
  26. /// Delay Locked Loop data. These variables refer to mathematical
  27. /// concepts described in: http://www.kokkinizita.net/papers/usingdll.pdf
  28. double cycle_time;
  29. double feedback2_factor;
  30. double feedback3_factor;
  31. double integrator2_state;
  32. };
  33. TimeFilter * ff_timefilter_new(double feedback2_factor, double feedback3_factor)
  34. {
  35. TimeFilter *self = av_mallocz(sizeof(TimeFilter));
  36. self->integrator2_state = 1.0;
  37. self->feedback2_factor = feedback2_factor;
  38. self->feedback3_factor = feedback3_factor;
  39. return self;
  40. }
  41. void ff_timefilter_destroy(TimeFilter *self)
  42. {
  43. av_freep(&self);
  44. }
  45. void ff_timefilter_reset(TimeFilter *self)
  46. {
  47. self->cycle_time = 0;
  48. }
  49. double ff_timefilter_update(TimeFilter *self, double system_time, double period)
  50. {
  51. if (!self->cycle_time) {
  52. /// init loop
  53. self->cycle_time = system_time;
  54. } else {
  55. double loop_error;
  56. self->cycle_time+= self->integrator2_state * period;
  57. /// calculate loop error
  58. loop_error = system_time - self->cycle_time;
  59. /// update loop
  60. self->cycle_time += self->feedback2_factor * loop_error;
  61. self->integrator2_state += self->feedback3_factor * loop_error / period;
  62. }
  63. return self->cycle_time;
  64. }