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.

133 lines
6.7KB

  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. typedef void (*h264_weight_func)(uint8_t *block, int stride, int height,
  29. int log2_denom, int weight, int offset);
  30. typedef void (*h264_biweight_func)(uint8_t *dst, uint8_t *src,
  31. int stride, int height, int log2_denom,
  32. int weightd, int weights, int offset);
  33. /**
  34. * Context for storing H.264 DSP functions
  35. */
  36. typedef struct H264DSPContext {
  37. /* weighted MC */
  38. h264_weight_func weight_h264_pixels_tab[4];
  39. h264_biweight_func biweight_h264_pixels_tab[4];
  40. /* loop filter */
  41. void (*h264_v_loop_filter_luma)(uint8_t *pix /*align 16*/, int stride,
  42. int alpha, int beta, int8_t *tc0);
  43. void (*h264_h_loop_filter_luma)(uint8_t *pix /*align 4 */, int stride,
  44. int alpha, int beta, int8_t *tc0);
  45. void (*h264_h_loop_filter_luma_mbaff)(uint8_t *pix /*align 16*/, int stride,
  46. int alpha, int beta, int8_t *tc0);
  47. /* v/h_loop_filter_luma_intra: align 16 */
  48. void (*h264_v_loop_filter_luma_intra)(uint8_t *pix, int stride,
  49. int alpha, int beta);
  50. void (*h264_h_loop_filter_luma_intra)(uint8_t *pix, int stride,
  51. int alpha, int beta);
  52. void (*h264_h_loop_filter_luma_mbaff_intra)(uint8_t *pix /*align 16*/,
  53. int stride, int alpha, int beta);
  54. void (*h264_v_loop_filter_chroma)(uint8_t *pix /*align 8*/, int stride,
  55. int alpha, int beta, int8_t *tc0);
  56. void (*h264_h_loop_filter_chroma)(uint8_t *pix /*align 4*/, int stride,
  57. int alpha, int beta, int8_t *tc0);
  58. void (*h264_h_loop_filter_chroma_mbaff)(uint8_t *pix /*align 8*/,
  59. int stride, int alpha, int beta,
  60. int8_t *tc0);
  61. void (*h264_v_loop_filter_chroma_intra)(uint8_t *pix /*align 8*/,
  62. int stride, int alpha, int beta);
  63. void (*h264_h_loop_filter_chroma_intra)(uint8_t *pix /*align 8*/,
  64. int stride, int alpha, int beta);
  65. void (*h264_h_loop_filter_chroma_mbaff_intra)(uint8_t *pix /*align 8*/,
  66. int stride, int alpha, int beta);
  67. // h264_loop_filter_strength: simd only. the C version is inlined in h264_loopfilter.c
  68. void (*h264_loop_filter_strength)(int16_t bS[2][4][4], uint8_t nnz[40],
  69. int8_t ref[2][40], int16_t mv[2][40][2],
  70. int bidir, int edges, int step,
  71. int mask_mv0, int mask_mv1, int field);
  72. /* IDCT */
  73. void (*h264_idct_add)(uint8_t *dst /*align 4*/,
  74. int16_t *block /*align 16*/, int stride);
  75. void (*h264_idct8_add)(uint8_t *dst /*align 8*/,
  76. int16_t *block /*align 16*/, int stride);
  77. void (*h264_idct_dc_add)(uint8_t *dst /*align 4*/,
  78. int16_t *block /*align 16*/, int stride);
  79. void (*h264_idct8_dc_add)(uint8_t *dst /*align 8*/,
  80. int16_t *block /*align 16*/, int stride);
  81. void (*h264_idct_add16)(uint8_t *dst /*align 16*/, const int *blockoffset,
  82. int16_t *block /*align 16*/, int stride,
  83. const uint8_t nnzc[15 * 8]);
  84. void (*h264_idct8_add4)(uint8_t *dst /*align 16*/, const int *blockoffset,
  85. int16_t *block /*align 16*/, int stride,
  86. const uint8_t nnzc[15 * 8]);
  87. void (*h264_idct_add8)(uint8_t **dst /*align 16*/, const int *blockoffset,
  88. int16_t *block /*align 16*/, int stride,
  89. const uint8_t nnzc[15 * 8]);
  90. void (*h264_idct_add16intra)(uint8_t *dst /*align 16*/, const int *blockoffset,
  91. int16_t *block /*align 16*/,
  92. int stride, const uint8_t nnzc[15 * 8]);
  93. void (*h264_luma_dc_dequant_idct)(int16_t *output,
  94. int16_t *input /*align 16*/, int qmul);
  95. void (*h264_chroma_dc_dequant_idct)(int16_t *block, int qmul);
  96. /* bypass-transform */
  97. void (*h264_add_pixels8_clear)(uint8_t *dst, int16_t *block, int stride);
  98. void (*h264_add_pixels4_clear)(uint8_t *dst, int16_t *block, int stride);
  99. /**
  100. * Search buf from the start for up to size bytes. Return the index
  101. * of a zero byte, or >= size if not found. Ideally, use lookahead
  102. * to filter out any zero bytes that are known to not be followed by
  103. * one or more further zero bytes and a one byte. Better still, filter
  104. * out any bytes that form the trailing_zero_8bits syntax element too.
  105. */
  106. int (*startcode_find_candidate)(const uint8_t *buf, int size);
  107. } H264DSPContext;
  108. void ff_h264dsp_init(H264DSPContext *c, const int bit_depth,
  109. const int chroma_format_idc);
  110. void ff_h264dsp_init_aarch64(H264DSPContext *c, const int bit_depth,
  111. const int chroma_format_idc);
  112. void ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth,
  113. const int chroma_format_idc);
  114. void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth,
  115. const int chroma_format_idc);
  116. void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
  117. const int chroma_format_idc);
  118. void ff_h264dsp_init_mips(H264DSPContext *c, const int bit_depth,
  119. const int chroma_format_idc);
  120. #endif /* AVCODEC_H264DSP_H */