h264_parse.h 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. * H.264 decoder/parser shared code
  21. */
  22. #ifndef AVCODEC_H264_PARSE_H
  23. #define AVCODEC_H264_PARSE_H
  24. #include "config.h"
  25. #include <stdint.h>
  26. #include "libavutil/attributes.h"
  27. #include "get_bits.h"
  28. #include "h264_ps.h"
  29. #define MB_TYPE_REF0 MB_TYPE_CODEC_SPECIFIC
  30. #define MB_TYPE_8x8DCT 0x01000000
  31. // This table must be here because scan8[constant] must be known at compile time
  32. static const uint8_t scan8[16 * 3 + 3] = {
  33. 4 + 1 * 8, 5 + 1 * 8, 4 + 2 * 8, 5 + 2 * 8,
  34. 6 + 1 * 8, 7 + 1 * 8, 6 + 2 * 8, 7 + 2 * 8,
  35. 4 + 3 * 8, 5 + 3 * 8, 4 + 4 * 8, 5 + 4 * 8,
  36. 6 + 3 * 8, 7 + 3 * 8, 6 + 4 * 8, 7 + 4 * 8,
  37. 4 + 6 * 8, 5 + 6 * 8, 4 + 7 * 8, 5 + 7 * 8,
  38. 6 + 6 * 8, 7 + 6 * 8, 6 + 7 * 8, 7 + 7 * 8,
  39. 4 + 8 * 8, 5 + 8 * 8, 4 + 9 * 8, 5 + 9 * 8,
  40. 6 + 8 * 8, 7 + 8 * 8, 6 + 9 * 8, 7 + 9 * 8,
  41. 4 + 11 * 8, 5 + 11 * 8, 4 + 12 * 8, 5 + 12 * 8,
  42. 6 + 11 * 8, 7 + 11 * 8, 6 + 12 * 8, 7 + 12 * 8,
  43. 4 + 13 * 8, 5 + 13 * 8, 4 + 14 * 8, 5 + 14 * 8,
  44. 6 + 13 * 8, 7 + 13 * 8, 6 + 14 * 8, 7 + 14 * 8,
  45. 0 + 0 * 8, 0 + 5 * 8, 0 + 10 * 8
  46. };
  47. /**
  48. * Memory management control operation opcode.
  49. */
  50. typedef enum MMCOOpcode {
  51. MMCO_END = 0,
  52. MMCO_SHORT2UNUSED,
  53. MMCO_LONG2UNUSED,
  54. MMCO_SHORT2LONG,
  55. MMCO_SET_MAX_LONG,
  56. MMCO_RESET,
  57. MMCO_LONG,
  58. } MMCOOpcode;
  59. typedef struct H264PredWeightTable {
  60. int use_weight;
  61. int use_weight_chroma;
  62. int luma_log2_weight_denom;
  63. int chroma_log2_weight_denom;
  64. int luma_weight_flag[2]; ///< 7.4.3.2 luma_weight_lX_flag
  65. int chroma_weight_flag[2]; ///< 7.4.3.2 chroma_weight_lX_flag
  66. // The following 2 can be changed to int8_t but that causes a 10 CPU cycles speed loss
  67. int luma_weight[48][2][2];
  68. int chroma_weight[48][2][2][2];
  69. int implicit_weight[48][48][2];
  70. } H264PredWeightTable;
  71. typedef struct H264POCContext {
  72. int poc_lsb;
  73. int poc_msb;
  74. int delta_poc_bottom;
  75. int delta_poc[2];
  76. int frame_num;
  77. int prev_poc_msb; ///< poc_msb of the last reference pic for POC type 0
  78. int prev_poc_lsb; ///< poc_lsb of the last reference pic for POC type 0
  79. int frame_num_offset; ///< for POC type 2
  80. int prev_frame_num_offset; ///< for POC type 2
  81. int prev_frame_num; ///< frame_num of the last pic for POC type 1/2
  82. } H264POCContext;
  83. int ff_h264_pred_weight_table(GetBitContext *gb, const SPS *sps,
  84. const int *ref_count, int slice_type_nos,
  85. H264PredWeightTable *pwt,
  86. int picture_structure, void *logctx);
  87. /**
  88. * Check if the top & left blocks are available if needed & change the
  89. * dc mode so it only uses the available blocks.
  90. */
  91. int ff_h264_check_intra4x4_pred_mode(int8_t *pred_mode_cache, void *logctx,
  92. int top_samples_available, int left_samples_available);
  93. /**
  94. * Check if the top & left blocks are available if needed & change the
  95. * dc mode so it only uses the available blocks.
  96. */
  97. int ff_h264_check_intra_pred_mode(void *logctx, int top_samples_available,
  98. int left_samples_available,
  99. int mode, int is_chroma);
  100. int ff_h264_parse_ref_count(int *plist_count, int ref_count[2],
  101. GetBitContext *gb, const PPS *pps,
  102. int slice_type_nos, int picture_structure, void *logctx);
  103. int ff_h264_init_poc(int pic_field_poc[2], int *pic_poc,
  104. const SPS *sps, H264POCContext *poc,
  105. int picture_structure, int nal_ref_idc);
  106. int ff_h264_decode_extradata(const uint8_t *data, int size, H264ParamSets *ps,
  107. int *is_avc, int *nal_length_size,
  108. int err_recognition, void *logctx);
  109. static av_always_inline uint32_t pack16to32(unsigned a, unsigned b)
  110. {
  111. #if HAVE_BIGENDIAN
  112. return (b & 0xFFFF) + (a << 16);
  113. #else
  114. return (a & 0xFFFF) + (b << 16);
  115. #endif
  116. }
  117. #endif /* AVCODEC_H264_PARSE_H */