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.

117 lines
3.7KB

  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. /**
  19. * @file
  20. * misc image utilities
  21. */
  22. #include "imgutils.h"
  23. #include "libavutil/pixdesc.h"
  24. int av_fill_image_linesizes(int linesizes[4], enum PixelFormat pix_fmt, int width)
  25. {
  26. int i;
  27. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
  28. int max_step [4]; /* max pixel step for each plane */
  29. int max_step_comp[4]; /* the component for each plane which has the max pixel step */
  30. memset(linesizes, 0, 4*sizeof(linesizes[0]));
  31. if (desc->flags & PIX_FMT_HWACCEL)
  32. return AVERROR(EINVAL);
  33. if (desc->flags & PIX_FMT_BITSTREAM) {
  34. linesizes[0] = (width * (desc->comp[0].step_minus1+1) + 7) >> 3;
  35. return 0;
  36. }
  37. memset(max_step , 0, sizeof(max_step ));
  38. memset(max_step_comp, 0, sizeof(max_step_comp));
  39. for (i = 0; i < 4; i++) {
  40. const AVComponentDescriptor *comp = &(desc->comp[i]);
  41. if ((comp->step_minus1+1) > max_step[comp->plane]) {
  42. max_step [comp->plane] = comp->step_minus1+1;
  43. max_step_comp[comp->plane] = i;
  44. }
  45. }
  46. for (i = 0; i < 4; i++) {
  47. int s = (max_step_comp[i] == 1 || max_step_comp[i] == 2) ? desc->log2_chroma_w : 0;
  48. linesizes[i] = max_step[i] * (((width + (1 << s) - 1)) >> s);
  49. }
  50. return 0;
  51. }
  52. int av_fill_image_pointers(uint8_t *data[4], enum PixelFormat pix_fmt, int height,
  53. uint8_t *ptr, const int linesizes[4])
  54. {
  55. int i, total_size, size[4], has_plane[4];
  56. const AVPixFmtDescriptor *desc = &av_pix_fmt_descriptors[pix_fmt];
  57. memset(data , 0, sizeof(data[0])*4);
  58. memset(size , 0, sizeof(size));
  59. memset(has_plane, 0, sizeof(has_plane));
  60. if (desc->flags & PIX_FMT_HWACCEL)
  61. return AVERROR(EINVAL);
  62. data[0] = ptr;
  63. size[0] = linesizes[0] * height;
  64. if (desc->flags & PIX_FMT_PAL) {
  65. size[0] = (size[0] + 3) & ~3;
  66. data[1] = ptr + size[0]; /* palette is stored here as 256 32 bits words */
  67. return size[0] + 256 * 4;
  68. }
  69. for (i = 0; i < 4; i++)
  70. has_plane[desc->comp[i].plane] = 1;
  71. total_size = size[0];
  72. for (i = 1; has_plane[i] && i < 4; i++) {
  73. int h, s = (i == 1 || i == 2) ? desc->log2_chroma_h : 0;
  74. data[i] = data[i-1] + size[i-1];
  75. h = (height + (1 << s) - 1) >> s;
  76. size[i] = h * linesizes[i];
  77. total_size += size[i];
  78. }
  79. return total_size;
  80. }
  81. typedef struct ImgUtils {
  82. const AVClass *class;
  83. int log_offset;
  84. void *log_ctx;
  85. } ImgUtils;
  86. static const AVClass imgutils_class = { "IMGUTILS", av_default_item_name, NULL, LIBAVUTIL_VERSION_INT, offsetof(ImgUtils, log_offset), offsetof(ImgUtils, log_ctx) };
  87. int av_check_image_size(unsigned int w, unsigned int h, int log_offset, void *log_ctx)
  88. {
  89. ImgUtils imgutils = { &imgutils_class, log_offset, log_ctx };
  90. if((int)w>0 && (int)h>0 && (w+128)*(uint64_t)(h+128) < INT_MAX/8)
  91. return 0;
  92. av_log(&imgutils, AV_LOG_ERROR, "picture size invalid (%ux%u)\n", w, h);
  93. return AVERROR(EINVAL);
  94. }