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.

76 lines
2.4KB

  1. /*
  2. * Copyright (C) 2013 Wei Gao <weigao@multicorewareinc.com>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. #ifndef AVFILTER_UNSHARP_H
  21. #define AVFILTER_UNSHARP_H
  22. #include "config.h"
  23. #include "avfilter.h"
  24. #if CONFIG_OPENCL
  25. #include "libavutil/opencl.h"
  26. #endif
  27. #define MIN_MATRIX_SIZE 3
  28. #define MAX_MATRIX_SIZE 63
  29. #if CONFIG_OPENCL
  30. typedef struct {
  31. cl_mem cl_luma_mask;
  32. cl_mem cl_chroma_mask;
  33. int in_plane_size[8];
  34. int out_plane_size[8];
  35. int plane_num;
  36. cl_mem cl_inbuf;
  37. size_t cl_inbuf_size;
  38. cl_mem cl_outbuf;
  39. size_t cl_outbuf_size;
  40. AVOpenCLKernelEnv kernel_env;
  41. } UnsharpOpenclContext;
  42. #endif
  43. typedef struct UnsharpFilterParam {
  44. int msize_x; ///< matrix width
  45. int msize_y; ///< matrix height
  46. int amount; ///< effect amount
  47. int steps_x; ///< horizontal step count
  48. int steps_y; ///< vertical step count
  49. int scalebits; ///< bits to shift pixel
  50. int32_t halfscale; ///< amount to add to pixel
  51. uint32_t *sc[MAX_MATRIX_SIZE - 1]; ///< finite state machine storage
  52. } UnsharpFilterParam;
  53. typedef struct {
  54. const AVClass *class;
  55. int lmsize_x, lmsize_y, cmsize_x, cmsize_y;
  56. float lamount, camount;
  57. UnsharpFilterParam luma; ///< luma parameters (width, height, amount)
  58. UnsharpFilterParam chroma; ///< chroma parameters (width, height, amount)
  59. int hsub, vsub;
  60. int opencl;
  61. #if CONFIG_OPENCL
  62. UnsharpOpenclContext opencl_ctx;
  63. #endif
  64. int (* apply_unsharp)(AVFilterContext *ctx, AVFrame *in, AVFrame *out);
  65. } UnsharpContext;
  66. #endif /* AVFILTER_UNSHARP_H */