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.

118 lines
5.8KB

  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 "dsputil.h"
  29. typedef void (*h264_weight_func)(uint8_t *block, int stride, int height,
  30. int log2_denom, int weight, int offset);
  31. typedef void (*h264_biweight_func)(uint8_t *dst, uint8_t *src,
  32. int 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*/, int stride,
  43. int alpha, int beta, int8_t *tc0);
  44. void (*h264_h_loop_filter_luma)(uint8_t *pix /*align 4 */, int stride,
  45. int alpha, int beta, int8_t *tc0);
  46. void (*h264_h_loop_filter_luma_mbaff)(uint8_t *pix /*align 16*/, int 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, int stride,
  50. int alpha, int beta);
  51. void (*h264_h_loop_filter_luma_intra)(uint8_t *pix, int stride,
  52. int alpha, int beta);
  53. void (*h264_h_loop_filter_luma_mbaff_intra)(uint8_t *pix /*align 16*/,
  54. int stride, int alpha, int beta);
  55. void (*h264_v_loop_filter_chroma)(uint8_t *pix /*align 8*/, int stride,
  56. int alpha, int beta, int8_t *tc0);
  57. void (*h264_h_loop_filter_chroma)(uint8_t *pix /*align 4*/, int stride,
  58. int alpha, int beta, int8_t *tc0);
  59. void (*h264_h_loop_filter_chroma_mbaff)(uint8_t *pix /*align 8*/,
  60. int stride, int alpha, int beta,
  61. int8_t *tc0);
  62. void (*h264_v_loop_filter_chroma_intra)(uint8_t *pix /*align 8*/,
  63. int stride, int alpha, int beta);
  64. void (*h264_h_loop_filter_chroma_intra)(uint8_t *pix /*align 8*/,
  65. int stride, int alpha, int beta);
  66. void (*h264_h_loop_filter_chroma_mbaff_intra)(uint8_t *pix /*align 8*/,
  67. int stride, int alpha, int beta);
  68. // h264_loop_filter_strength: simd only. the C version is inlined in h264.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. DCTELEM *block /*align 16*/, int stride);
  76. void (*h264_idct8_add)(uint8_t *dst /*align 8*/,
  77. DCTELEM *block /*align 16*/, int stride);
  78. void (*h264_idct_dc_add)(uint8_t *dst /*align 4*/,
  79. DCTELEM *block /*align 16*/, int stride);
  80. void (*h264_idct8_dc_add)(uint8_t *dst /*align 8*/,
  81. DCTELEM *block /*align 16*/, int stride);
  82. void (*h264_idct_add16)(uint8_t *dst /*align 16*/, const int *blockoffset,
  83. DCTELEM *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. DCTELEM *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. DCTELEM *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. DCTELEM *block /*align 16*/,
  93. int stride, const uint8_t nnzc[15 * 8]);
  94. void (*h264_luma_dc_dequant_idct)(DCTELEM *output,
  95. DCTELEM *input /*align 16*/, int qmul);
  96. void (*h264_chroma_dc_dequant_idct)(DCTELEM *block, int qmul);
  97. } H264DSPContext;
  98. void ff_h264dsp_init(H264DSPContext *c, const int bit_depth,
  99. const int chroma_format_idc);
  100. void ff_h264dsp_init_arm(H264DSPContext *c, const int bit_depth,
  101. const int chroma_format_idc);
  102. void ff_h264dsp_init_ppc(H264DSPContext *c, const int bit_depth,
  103. const int chroma_format_idc);
  104. void ff_h264dsp_init_x86(H264DSPContext *c, const int bit_depth,
  105. const int chroma_format_idc);
  106. #endif /* AVCODEC_H264DSP_H */