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.

71 lines
1.9KB

  1. /*
  2. * Copyright (c) 2013 Paul B Mahol
  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. #include "libavutil/eval.h"
  21. #include "avfilter.h"
  22. enum BlendMode {
  23. BLEND_UNSET = -1,
  24. BLEND_NORMAL,
  25. BLEND_ADDITION,
  26. BLEND_AND,
  27. BLEND_AVERAGE,
  28. BLEND_BURN,
  29. BLEND_DARKEN,
  30. BLEND_DIFFERENCE,
  31. BLEND_DIFFERENCE128,
  32. BLEND_DIVIDE,
  33. BLEND_DODGE,
  34. BLEND_EXCLUSION,
  35. BLEND_HARDLIGHT,
  36. BLEND_LIGHTEN,
  37. BLEND_MULTIPLY,
  38. BLEND_NEGATION,
  39. BLEND_OR,
  40. BLEND_OVERLAY,
  41. BLEND_PHOENIX,
  42. BLEND_PINLIGHT,
  43. BLEND_REFLECT,
  44. BLEND_SCREEN,
  45. BLEND_SOFTLIGHT,
  46. BLEND_SUBTRACT,
  47. BLEND_VIVIDLIGHT,
  48. BLEND_XOR,
  49. BLEND_HARDMIX,
  50. BLEND_LINEARLIGHT,
  51. BLEND_GLOW,
  52. BLEND_ADDITION128,
  53. BLEND_NB
  54. };
  55. typedef struct FilterParams {
  56. enum BlendMode mode;
  57. double opacity;
  58. AVExpr *e;
  59. char *expr_str;
  60. void (*blend)(const uint8_t *top, ptrdiff_t top_linesize,
  61. const uint8_t *bottom, ptrdiff_t bottom_linesize,
  62. uint8_t *dst, ptrdiff_t dst_linesize,
  63. ptrdiff_t width, ptrdiff_t start, ptrdiff_t end,
  64. struct FilterParams *param, double *values);
  65. } FilterParams;
  66. void ff_blend_init_x86(FilterParams *param, int is_16bit);