drawutils.c 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  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. #include "libavutil/avutil.h"
  19. #include "libavutil/colorspace.h"
  20. #include "libavutil/pixdesc.h"
  21. #include "drawutils.h"
  22. enum { RED = 0, GREEN, BLUE, ALPHA };
  23. int ff_fill_rgba_map(uint8_t *rgba_map, enum PixelFormat pix_fmt)
  24. {
  25. switch (pix_fmt) {
  26. case PIX_FMT_ARGB: rgba_map[ALPHA] = 0; rgba_map[RED ] = 1; rgba_map[GREEN] = 2; rgba_map[BLUE ] = 3; break;
  27. case PIX_FMT_ABGR: rgba_map[ALPHA] = 0; rgba_map[BLUE ] = 1; rgba_map[GREEN] = 2; rgba_map[RED ] = 3; break;
  28. case PIX_FMT_RGBA:
  29. case PIX_FMT_RGB24: rgba_map[RED ] = 0; rgba_map[GREEN] = 1; rgba_map[BLUE ] = 2; rgba_map[ALPHA] = 3; break;
  30. case PIX_FMT_BGRA:
  31. case PIX_FMT_BGR24: rgba_map[BLUE ] = 0; rgba_map[GREEN] = 1; rgba_map[RED ] = 2; rgba_map[ALPHA] = 3; break;
  32. default: /* unsupported */
  33. return AVERROR(EINVAL);
  34. }
  35. return 0;
  36. }
  37. int ff_fill_line_with_color(uint8_t *line[4], int pixel_step[4], int w, uint8_t dst_color[4],
  38. enum PixelFormat pix_fmt, uint8_t rgba_color[4],
  39. int *is_packed_rgba, uint8_t rgba_map_ptr[4])
  40. {
  41. uint8_t rgba_map[4] = {0};
  42. int i;
  43. const AVPixFmtDescriptor *pix_desc = &av_pix_fmt_descriptors[pix_fmt];
  44. int hsub = pix_desc->log2_chroma_w;
  45. *is_packed_rgba = ff_fill_rgba_map(rgba_map, pix_fmt) >= 0;
  46. if (*is_packed_rgba) {
  47. pixel_step[0] = (av_get_bits_per_pixel(pix_desc))>>3;
  48. for (i = 0; i < 4; i++)
  49. dst_color[rgba_map[i]] = rgba_color[i];
  50. line[0] = av_malloc(w * pixel_step[0]);
  51. for (i = 0; i < w; i++)
  52. memcpy(line[0] + i * pixel_step[0], dst_color, pixel_step[0]);
  53. if (rgba_map_ptr)
  54. memcpy(rgba_map_ptr, rgba_map, sizeof(rgba_map[0]) * 4);
  55. } else {
  56. int plane;
  57. dst_color[0] = RGB_TO_Y_CCIR(rgba_color[0], rgba_color[1], rgba_color[2]);
  58. dst_color[1] = RGB_TO_U_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  59. dst_color[2] = RGB_TO_V_CCIR(rgba_color[0], rgba_color[1], rgba_color[2], 0);
  60. dst_color[3] = rgba_color[3];
  61. for (plane = 0; plane < 4; plane++) {
  62. int line_size;
  63. int hsub1 = (plane == 1 || plane == 2) ? hsub : 0;
  64. pixel_step[plane] = 1;
  65. line_size = (w >> hsub1) * pixel_step[plane];
  66. line[plane] = av_malloc(line_size);
  67. memset(line[plane], dst_color[plane], line_size);
  68. }
  69. }
  70. return 0;
  71. }
  72. void ff_draw_rectangle(uint8_t *dst[4], int dst_linesize[4],
  73. uint8_t *src[4], int pixelstep[4],
  74. int hsub, int vsub, int x, int y, int w, int h)
  75. {
  76. int i, plane;
  77. uint8_t *p;
  78. for (plane = 0; plane < 4 && dst[plane]; plane++) {
  79. int hsub1 = plane == 1 || plane == 2 ? hsub : 0;
  80. int vsub1 = plane == 1 || plane == 2 ? vsub : 0;
  81. p = dst[plane] + (y >> vsub1) * dst_linesize[plane];
  82. for (i = 0; i < (h >> vsub1); i++) {
  83. memcpy(p + (x >> hsub1) * pixelstep[plane],
  84. src[plane], (w >> hsub1) * pixelstep[plane]);
  85. p += dst_linesize[plane];
  86. }
  87. }
  88. }
  89. void ff_copy_rectangle(uint8_t *dst[4], int dst_linesize[4],
  90. uint8_t *src[4], int src_linesize[4], int pixelstep[4],
  91. int hsub, int vsub, int x, int y, int y2, int w, int h)
  92. {
  93. int i, plane;
  94. uint8_t *p;
  95. for (plane = 0; plane < 4 && dst[plane]; plane++) {
  96. int hsub1 = plane == 1 || plane == 2 ? hsub : 0;
  97. int vsub1 = plane == 1 || plane == 2 ? vsub : 0;
  98. p = dst[plane] + (y >> vsub1) * dst_linesize[plane];
  99. for (i = 0; i < (h >> vsub1); i++) {
  100. memcpy(p + (x >> hsub1) * pixelstep[plane],
  101. src[plane] + src_linesize[plane]*(i+(y2>>vsub1)), (w >> hsub1) * pixelstep[plane]);
  102. p += dst_linesize[plane];
  103. }
  104. }
  105. }