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.

140 lines
5.3KB

  1. /*
  2. * pixel format descriptor
  3. * Copyright (c) 2009 Michael Niedermayer <michaelni@gmx.at>
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. #include <inttypes.h>
  22. #include "libavutil/intreadwrite.h"
  23. #include "libavcodec/bitstream.h"
  24. typedef struct AVComponentDescriptor{
  25. uint16_t plane :2; ///< which of the 4 planes contains the component
  26. /**
  27. * Number of elements between 2 horizontally consecutive pixels minus 1.
  28. * Elements are bits for bitstream formats, bytes otherwise.
  29. */
  30. uint16_t step_minus1 :3;
  31. /**
  32. * Number of elements before the component of the first pixel plus 1.
  33. * Elements are bits for bitstream formats, bytes otherwise.
  34. */
  35. uint16_t offset_plus1 :3;
  36. uint16_t shift :3; ///< number of least significant bits that must be shifted away to get the value
  37. uint16_t depth_minus1 :4; ///< number of bits in the component minus 1
  38. }AVComponentDescriptor;
  39. /**
  40. * Descriptor that unambiguously describes how the bits of a pixel are
  41. * stored in the up to 4 data planes of an image. It also stores the
  42. * subsampling factors and number of components.
  43. *
  44. * @note This is separate of the colorspace (RGB, YCbCr, YPbPr, JPEG-style YUV
  45. * and all the YUV variants) AVPixFmtDescriptor just stores how values
  46. * are stored not what these values represent.
  47. */
  48. typedef struct AVPixFmtDescriptor{
  49. const char *name;
  50. uint8_t nb_channels; ///< The number of components each pixel has, (1-4)
  51. /**
  52. * Amount to shift the luma width right to find the chroma width.
  53. * For YV12 this is 1 for example.
  54. * chroma_width = -((-luma_width) >> log2_chroma_w)
  55. * The note above is needed to ensure rounding up.
  56. */
  57. uint8_t log2_chroma_w; ///< chroma_width = -((-luma_width )>>log2_chroma_w)
  58. /**
  59. * Amount to shift the luma height right to find the chroma height.
  60. * For YV12 this is 1 for example.
  61. * chroma_height= -((-luma_height) >> log2_chroma_h)
  62. * The note above is needed to ensure rounding up.
  63. */
  64. uint8_t log2_chroma_h;
  65. uint8_t flags;
  66. AVComponentDescriptor comp[4]; ///< parameters that describe how pixels are packed
  67. }AVPixFmtDescriptor;
  68. #define PIX_FMT_BE 1 ///< big-endian
  69. #define PIX_FMT_PAL 2 ///< Pixel format has a palette in data[1], values are indexes in this palette.
  70. #define PIX_FMT_BITSTREAM 4 ///< All values of a component are bit-wise packed end to end.
  71. /**
  72. * The array of all the pixel format descriptors.
  73. */
  74. extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
  75. /**
  76. * Reads a line from an image, and writes to \p dst the values of the
  77. * pixel format component \p c.
  78. *
  79. * @param data the array containing the pointers to the planes of the image
  80. * @param linesizes the array containing the linesizes of the image
  81. * @param desc the pixel format descriptor for the image
  82. * @param x the horizontal coordinate of the first pixel to read
  83. * @param y the vertical coordinate of the first pixel to read
  84. * @param w the width of the line to read, that is the number of
  85. * values to write to \p dst
  86. * @param read_pal_component if not zero and the format is a paletted
  87. * format writes to \p dst the values corresponding to the palette
  88. * component \p c in data[1], rather than the palette indexes in
  89. * data[0]. The behavior is undefined if the format is not paletted.
  90. */
  91. static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4],
  92. const AVPixFmtDescriptor *desc, int x, int y, int c, int w, int read_pal_component)
  93. {
  94. AVComponentDescriptor comp= desc->comp[c];
  95. int plane= comp.plane;
  96. int depth= comp.depth_minus1+1;
  97. int mask = (1<<depth)-1;
  98. int shift= comp.shift;
  99. int step = comp.step_minus1+1;
  100. int flags= desc->flags;
  101. if (flags & PIX_FMT_BITSTREAM){
  102. GetBitContext gb;
  103. init_get_bits(&gb, data[plane] + y*linesize[plane], linesize[plane]*8);
  104. skip_bits_long(&gb, x*step + comp.offset_plus1-1);
  105. while(w--){
  106. int val = show_bits(&gb, depth);
  107. if(read_pal_component)
  108. val= data[1][4*val + c];
  109. skip_bits(&gb, step);
  110. *dst++= val;
  111. }
  112. } else {
  113. const uint8_t *p = data[plane]+ y*linesize[plane] + x*step + comp.offset_plus1-1;
  114. while(w--){
  115. int val;
  116. if(flags & PIX_FMT_BE) val= AV_RB16(p);
  117. else val= AV_RL16(p);
  118. val = (val>>shift) & mask;
  119. if(read_pal_component)
  120. val= data[1][4*val + c];
  121. p+= step;
  122. *dst++= val;
  123. }
  124. }
  125. }