video_enc_params.h 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  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. #ifndef AVUTIL_VIDEO_ENC_PARAMS_H
  19. #define AVUTIL_VIDEO_ENC_PARAMS_H
  20. #include <stddef.h>
  21. #include <stdint.h>
  22. #include "libavutil/avassert.h"
  23. #include "libavutil/frame.h"
  24. enum AVVideoEncParamsType {
  25. AV_VIDEO_ENC_PARAMS_NONE = -1,
  26. /**
  27. * VP9 stores:
  28. * - per-frame base (luma AC) quantizer index, exported as AVVideoEncParams.qp
  29. * - deltas for luma DC, chroma AC and chroma DC, exported in the
  30. * corresponding entries in AVVideoEncParams.delta_qp
  31. * - per-segment delta, exported as for each block as AVVideoBlockParams.delta_qp
  32. *
  33. * To compute the resulting quantizer index for a block:
  34. * - for luma AC, add the base qp and the per-block delta_qp, saturating to
  35. * unsigned 8-bit.
  36. * - for luma DC and chroma AC/DC, add the corresponding
  37. * AVVideoBlockParams.delta_qp to the luma AC index, again saturating to
  38. * unsigned 8-bit.
  39. */
  40. AV_VIDEO_ENC_PARAMS_VP9,
  41. /**
  42. * H.264 stores:
  43. * - in PPS (per-picture):
  44. * * initial QP_Y (luma) value, exported as AVVideoEncParams.qp
  45. * * delta(s) for chroma QP values (same for both, or each separately),
  46. * exported as in the corresponding entries in AVVideoEncParams.delta_qp
  47. * - per-slice QP delta, not exported directly, added to the per-MB value
  48. * - per-MB delta; not exported directly; the final per-MB quantizer
  49. * parameter - QP_Y - minus the value in AVVideoEncParams.qp is exported
  50. * as AVVideoBlockParams.qp_delta.
  51. */
  52. AV_VIDEO_ENC_PARAMS_H264,
  53. /*
  54. * MPEG-2-compatible quantizer.
  55. *
  56. * Summing the frame-level qp with the per-block delta_qp gives the
  57. * resulting quantizer for the block.
  58. */
  59. AV_VIDEO_ENC_PARAMS_MPEG2,
  60. };
  61. /**
  62. * Video encoding parameters for a given frame. This struct is allocated along
  63. * with an optional array of per-block AVVideoBlockParams descriptors.
  64. * Must be allocated with av_video_enc_params_alloc().
  65. */
  66. typedef struct AVVideoEncParams {
  67. /**
  68. * Number of blocks in the array.
  69. *
  70. * May be 0, in which case no per-block information is present. In this case
  71. * the values of blocks_offset / block_size are unspecified and should not
  72. * be accessed.
  73. */
  74. unsigned int nb_blocks;
  75. /**
  76. * Offset in bytes from the beginning of this structure at which the array
  77. * of blocks starts.
  78. */
  79. size_t blocks_offset;
  80. /*
  81. * Size of each block in bytes. May not match sizeof(AVVideoBlockParams).
  82. */
  83. size_t block_size;
  84. /**
  85. * Type of the parameters (the codec they are used with).
  86. */
  87. enum AVVideoEncParamsType type;
  88. /**
  89. * Base quantisation parameter for the frame. The final quantiser for a
  90. * given block in a given plane is obtained from this value, possibly
  91. * combined with {@code delta_qp} and the per-block delta in a manner
  92. * documented for each type.
  93. */
  94. int32_t qp;
  95. /**
  96. * Quantisation parameter offset from the base (per-frame) qp for a given
  97. * plane (first index) and AC/DC coefficients (second index).
  98. */
  99. int32_t delta_qp[4][2];
  100. } AVVideoEncParams;
  101. /**
  102. * Data structure for storing block-level encoding information.
  103. * It is allocated as a part of AVVideoEncParams and should be retrieved with
  104. * av_video_enc_params_block().
  105. *
  106. * sizeof(AVVideoBlockParams) is not a part of the ABI and new fields may be
  107. * added to it.
  108. */
  109. typedef struct AVVideoBlockParams {
  110. /**
  111. * Distance in luma pixels from the top-left corner of the visible frame
  112. * to the top-left corner of the block.
  113. * Can be negative if top/right padding is present on the coded frame.
  114. */
  115. int src_x, src_y;
  116. /**
  117. * Width and height of the block in luma pixels.
  118. */
  119. int w, h;
  120. /**
  121. * Difference between this block's final quantization parameter and the
  122. * corresponding per-frame value.
  123. */
  124. int32_t delta_qp;
  125. } AVVideoBlockParams;
  126. /*
  127. * Get the block at the specified {@code idx}. Must be between 0 and nb_blocks.
  128. */
  129. static av_always_inline AVVideoBlockParams*
  130. av_video_enc_params_block(AVVideoEncParams *par, unsigned int idx)
  131. {
  132. av_assert0(idx < par->nb_blocks);
  133. return (AVVideoBlockParams *)((uint8_t *)par + par->blocks_offset +
  134. idx * par->block_size);
  135. }
  136. /**
  137. * Allocates memory for AVVideoEncParams of the given type, plus an array of
  138. * {@code nb_blocks} AVVideoBlockParams and initializes the variables. Can be
  139. * freed with a normal av_free() call.
  140. *
  141. * @param out_size if non-NULL, the size in bytes of the resulting data array is
  142. * written here.
  143. */
  144. AVVideoEncParams *av_video_enc_params_alloc(enum AVVideoEncParamsType type,
  145. unsigned int nb_blocks, size_t *out_size);
  146. /**
  147. * Allocates memory for AVEncodeInfoFrame plus an array of
  148. * {@code nb_blocks} AVEncodeInfoBlock in the given AVFrame {@code frame}
  149. * as AVFrameSideData of type AV_FRAME_DATA_VIDEO_ENC_PARAMS
  150. * and initializes the variables.
  151. */
  152. AVVideoEncParams*
  153. av_video_enc_params_create_side_data(AVFrame *frame, enum AVVideoEncParamsType type,
  154. unsigned int nb_blocks);
  155. #endif /* AVUTIL_VIDEO_ENC_PARAMS_H */