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.

106 lines
4.0KB

  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. typedef struct AVComponentDescriptor{
  24. uint16_t plane :2; ///< which of the 4 planes contains the component
  25. uint16_t step_minus1 :3; ///< number of bytes between 2 horizontally consecutive pixels minus 1
  26. uint16_t offset_plus1 :3; ///< number of bytes before the component of the first pixel plus 1
  27. uint16_t shift :3; ///< number of least significant bits that must be shifted away to get the value
  28. uint16_t depth_minus1 :4; ///< number of bits in the component minus 1
  29. }AVComponentDescriptor;
  30. /**
  31. * Descriptor that unambiguously describes how the bits of a pixel are
  32. * stored in the up to 4 data planes of an image. It also stores the
  33. * subsampling factors and number of components.
  34. *
  35. * @note This is separate of the colorspace (RGB, YCbCr, YPbPr, JPEG-style YUV
  36. * and all the YUV variants) AVPixFmtDescriptor just stores how values
  37. * are stored not what these values represent.
  38. */
  39. typedef struct AVPixFmtDescriptor{
  40. const char *name;
  41. uint8_t nb_channels; ///< The number of components each pixel has, (1-4)
  42. /**
  43. * Amount to shift the luma width right to find the chroma width.
  44. * For YV12 this is 1 for example.
  45. * chroma_width = -((-luma_width) >> log2_chroma_w)
  46. * The note above is needed to ensure rounding up.
  47. */
  48. uint8_t log2_chroma_w; ///< chroma_width = -((-luma_width )>>log2_chroma_w)
  49. /**
  50. * Amount to shift the luma height right to find the chroma height.
  51. * For YV12 this is 1 for example.
  52. * chroma_height= -((-luma_height) >> log2_chroma_h)
  53. * The note above is needed to ensure rounding up.
  54. */
  55. uint8_t log2_chroma_h;
  56. uint8_t flags;
  57. AVComponentDescriptor comp[4]; ///< parameters that describe how pixels are packed
  58. }AVPixFmtDescriptor;
  59. #define PIX_FMT_BE 1 ///< big-endian
  60. #define PIX_FMT_PAL 2 ///< Pixel format has a palette in data[1], values are indexes in this palette.
  61. #define PIX_FMT_BITSTREAM 4 ///< All values of a component are bit-wise packed end to end.
  62. /**
  63. * The array of all the pixel format descriptors.
  64. */
  65. extern const AVPixFmtDescriptor av_pix_fmt_descriptors[];
  66. static inline void read_line(uint16_t *dst, const uint8_t *data[4], const int linesize[4], const AVPixFmtDescriptor *desc, int x, int y, int c, int w)
  67. {
  68. AVComponentDescriptor comp= desc->comp[c];
  69. int plane= comp.plane;
  70. int depth= comp.depth_minus1+1;
  71. int mask = (1<<depth)-1;
  72. int shift= comp.shift;
  73. int step = comp.step_minus1+1;
  74. int flags= desc->flags;
  75. const uint8_t *p= data[plane]+y*linesize[plane] + x * step + comp.offset_plus1 - 1;
  76. //FIXME initial x in case of PIX_FMT_BITSTREAM is wrong
  77. while(w--){
  78. int val;
  79. if(flags & PIX_FMT_BE) val= AV_RB16(p);
  80. else val= AV_RL16(p);
  81. val = (val>>shift) & mask;
  82. if(flags & PIX_FMT_PAL)
  83. val= data[1][4*val + c];
  84. if(flags & PIX_FMT_BITSTREAM){
  85. shift-=depth;
  86. while(shift<0){
  87. shift+=8;
  88. p++;
  89. }
  90. }else
  91. p+= step;
  92. *dst++= val;
  93. }
  94. }