h264dsp.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * Copyright (c) 2003-2010 Michael Niedermayer <michaelni@gmx.at>
  3. *
  4. * This file is part of FFmpeg.
  5. *
  6. * FFmpeg is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public
  8. * License as published by the Free Software Foundation; either
  9. * version 2.1 of the License, or (at your option) any later version.
  10. *
  11. * FFmpeg is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  14. * Lesser General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Lesser General Public
  17. * License along with FFmpeg; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * H.264 DSP functions.
  23. * @author Michael Niedermayer <michaelni@gmx.at>
  24. */
  25. #ifndef AVCODEC_H264DSP_H
  26. #define AVCODEC_H264DSP_H
  27. #include <stdint.h>
  28. #include <stddef.h>
  29. typedef void (*h264_weight_func)(uint8_t *block, ptrdiff_t stride, int height,
  30. int log2_denom, int weight, int offset);
  31. typedef void (*h264_biweight_func)(uint8_t *dst, uint8_t *src,
  32. ptrdiff_t stride, int height, int log2_denom,
  33. int weightd, int weights, int offset);
  34. /**
  35. * Context for storing H.264 DSP functions
  36. */
  37. typedef struct H264DSPContext {
  38. /* weighted MC */
  39. h264_weight_func weight_h264_pixels_tab[4];
  40. h264_biweight_func biweight_h264_pixels_tab[4];
  41. /* loop filter */
  42. void (*h264_v_loop_filter_luma)(uint8_t *pix /*align 16*/, ptrdiff_t stride,
  43. int alpha, int beta, int8_t *tc0);
  44. void (*h264_h_loop_filter_luma)(uint8_t *pix /*align 4 */, ptrdiff_t stride,
  45. int alpha, int beta, int8_t *tc0);
  46. void (*h264_h_loop_filter_luma_mbaff)(uint8_t *pix /*align 16*/, ptrdiff_t stride,
  47. int alpha, int beta, int8_t *tc0);
  48. /* v/h_loop_filter_luma_intra: align 16 */
  49. void (*h264_v_loop_filter_luma_intra)(uint8_t *pix, ptrdiff_t stride,
  50. int alpha, int beta);
  51. void (*h264_h_loop_filter_luma_intra)(uint8_t *pix, ptrdiff_t stride,
  52. int alpha, int beta);
  53. void (*h264_h_loop_filter_luma_mbaff_intra)(uint8_t *pix /*align 16*/,
  54. ptrdiff_t stride, int alpha, int beta);
  55. void (*h264_v_loop_filter_chroma)(uint8_t *pix /*align 8*/, ptrdiff_t stride,
  56. int alpha, int beta, int8_t *tc0);
  57. void (*h264_h_loop_filter_chroma)(uint8_t *pix /*align 4*/, ptrdiff_t stride,
  58. int alpha, int beta, int8_t *tc0);
  59. void (*h264_h_loop_filter_chroma_mbaff)(uint8_t *pix /*align 8*/,
  60. ptrdiff_t stride, int alpha, int beta,
  61. int8_t *tc0);
  62. void (*h264_v_loop_filter_chroma_intra)(uint8_t *pix /*align 8*/,
  63. ptrdiff_t stride, int alpha, int beta);
  64. void (*h264_h_loop_filter_chroma_intra)(uint8_t *pix /*align 8*/,
  65. ptrdiff_t stride, int alpha, int beta);
  66. void (*h264_h_loop_filter_chroma_mbaff_intra)(uint8_t *pix /*align 8*/,
  67. ptrdiff_t stride, int alpha, int beta);
  68. // h264_loop_filter_strength: simd only. the C version is inlined in h264_loopfilter.c
  69. void (*h264_loop_filter_strength)(int16_t bS[2][4][4], uint8_t nnz[40],
  70. int8_t ref[2][40], int16_t mv[2][40][2],
  71. int bidir, int edges, int step,
  72. int mask_mv0, int mask_mv1, int field);
  73. /* IDCT */
  74. void (*h264_idct_add)(uint8_t *dst /*align 4*/,
  75. int16_t *block /*align 16*/, int stride);
  76. void (*h264_idct8_add)(uint8_t *dst /*align 8*/,
  77. int16_t *block /*align 16*/, int stride);
  78. void (*h264_idct_dc_add)(uint8_t *dst /*align 4*/,
  79. int16_t *block /*align 16*/, int stride);
  80. void (*h264_idct8_dc_add)(uint8_t *dst /*align 8*/,
  81. int16_t *block /*align 16*/, int stride);
  82. void (*h264_idct_add16)(uint8_t *dst /*align 16*/, const int *blockoffset,
  83. int16_t *block /*align 16*/, int stride,
  84. const uint8_t nnzc[15 * 8]);
  85. void (*h264_idct8_add4)(uint8_t *dst /*align 16*/, const int *blockoffset,
  86. int16_t *block /*align 16*/, int stride,
  87. const uint8_t nnzc[15 * 8]);
  88. void (*h264_idct_add8)(uint8_t **dst /*align 16*/, const int *blockoffset,
  89. int16_t *block /*align 16*/, int stride,
  90. const uint8_t nnzc[15 * 8]);
  91. void (*h264_idct_add16intra)(uint8_t *dst /*align 16*/, const int *blockoffset,
  92. int16_t *block /*align 16*/,
  93. int stride, const uint8_t nnzc[15 * 8]);
  94. void (*h264_luma_dc_dequant_idct)(int16_t *output,
  95. int16_t *input /*align 16*/, int qmul);
  96. void (*h264_chroma_dc_dequant_idct)(int16_t *block, int qmul);
  97. /* bypass-transform */
  98. void (*h264_add_pixels8_clear)(uint8_t *dst, int16_t *block, int stride);
  99. void (*h264_add_pixels4_clear)(uint8_t *dst, int16_t *block, int stride);
  100. /**
  101. * Search buf from the start for up to size bytes. Return the index
  102. * of a zero byte, or >= size if not found. Ideally, use lookahead
  103. * to filter out any zero bytes that are known to not be followed by
  104. * one or more further zero bytes and a one byte. Better still, filter
  105. * out any bytes that form the trailing_zero_8bits syntax element too.
  106. */
  107. int (*startcode_find_candidate)(const uint8_t *buf, int size);
  108. } H264DSPContext;
  109. void ff_h264dsp_init(H264DSPContext *c, const int bit_depth,
  110. const int chroma_format_idc);
  111. void ff_h264dsp_init_aarch64(H264DSPContext *c, const int bit_depth,
  112. const int chroma_format_idc);
  113. void ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth,
  114. const int chroma_format_idc);
  115. void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth,
  116. const int chroma_format_idc);
  117. void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
  118. const int chroma_format_idc);
  119. void ff_h264dsp_init_mips(H264DSPContext *c, const int bit_depth,
  120. const int chroma_format_idc);
  121. #endif /* AVCODEC_H264DSP_H */