vf_idet.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifndef AVFILTER_IDET_H
  19. #define AVFILTER_IDET_H
  20. #include "libavutil/pixdesc.h"
  21. #include "avfilter.h"
  22. #define HIST_SIZE 4
  23. typedef int (*ff_idet_filter_func)(const uint8_t *a, const uint8_t *b, const uint8_t *c, int w);
  24. typedef enum {
  25. TFF,
  26. BFF,
  27. PROGRESSIVE,
  28. UNDETERMINED,
  29. } Type;
  30. typedef enum {
  31. REPEAT_NONE,
  32. REPEAT_TOP,
  33. REPEAT_BOTTOM,
  34. } RepeatedField;
  35. typedef struct {
  36. const AVClass *class;
  37. float interlace_threshold;
  38. float progressive_threshold;
  39. float repeat_threshold;
  40. float half_life;
  41. uint64_t decay_coefficient;
  42. Type last_type;
  43. uint64_t repeats[3];
  44. uint64_t prestat[4];
  45. uint64_t poststat[4];
  46. uint64_t total_repeats[3];
  47. uint64_t total_prestat[4];
  48. uint64_t total_poststat[4];
  49. uint8_t history[HIST_SIZE];
  50. AVFrame *cur;
  51. AVFrame *next;
  52. AVFrame *prev;
  53. ff_idet_filter_func filter_line;
  54. const AVPixFmtDescriptor *csp;
  55. int eof;
  56. } IDETContext;
  57. void ff_idet_init_x86(IDETContext *idet, int for_16b);
  58. /* main fall-back for left-over */
  59. int ff_idet_filter_line_c(const uint8_t *a, const uint8_t *b, const uint8_t *c, int w);
  60. int ff_idet_filter_line_c_16bit(const uint16_t *a, const uint16_t *b, const uint16_t *c, int w);
  61. #endif