vf_idet.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. PROGRSSIVE,
  28. UNDETERMINED,
  29. } Type;
  30. typedef struct {
  31. const AVClass *class;
  32. float interlace_threshold;
  33. float progressive_threshold;
  34. Type last_type;
  35. int prestat[4];
  36. int poststat[4];
  37. uint8_t history[HIST_SIZE];
  38. AVFrame *cur;
  39. AVFrame *next;
  40. AVFrame *prev;
  41. ff_idet_filter_func filter_line;
  42. const AVPixFmtDescriptor *csp;
  43. } IDETContext;
  44. void ff_idet_init_x86(IDETContext *idet, int for_16b);
  45. /* main fall-back for left-over */
  46. int ff_idet_filter_line_c(const uint8_t *a, const uint8_t *b, const uint8_t *c, int w);
  47. int ff_idet_filter_line_c_16bit(const uint16_t *a, const uint16_t *b, const uint16_t *c, int w);
  48. #endif