rv34dsp.h 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /*
  2. * RV30/40 decoder motion compensation functions
  3. * Copyright (c) 2008 Konstantin Shishkov
  4. *
  5. * This file is part of FFmpeg.
  6. *
  7. * FFmpeg is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * FFmpeg is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with FFmpeg; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. */
  21. /**
  22. * @file
  23. * RV30/40 decoder motion compensation functions
  24. */
  25. #ifndef AVCODEC_RV34DSP_H
  26. #define AVCODEC_RV34DSP_H
  27. #include "h264chroma.h"
  28. #include "qpeldsp.h"
  29. typedef void (*rv40_weight_func)(uint8_t *dst/*align width (8 or 16)*/,
  30. uint8_t *src1/*align width (8 or 16)*/,
  31. uint8_t *src2/*align width (8 or 16)*/,
  32. int w1, int w2, ptrdiff_t stride);
  33. typedef void (*rv34_inv_transform_func)(int16_t *block);
  34. typedef void (*rv34_idct_add_func)(uint8_t *dst, ptrdiff_t stride, int16_t *block);
  35. typedef void (*rv34_idct_dc_add_func)(uint8_t *dst, ptrdiff_t stride,
  36. int dc);
  37. typedef void (*rv40_weak_loop_filter_func)(uint8_t *src, ptrdiff_t stride,
  38. int filter_p1, int filter_q1,
  39. int alpha, int beta,
  40. int lims, int lim_q1, int lim_p1);
  41. typedef void (*rv40_strong_loop_filter_func)(uint8_t *src, ptrdiff_t stride,
  42. int alpha, int lims,
  43. int dmode, int chroma);
  44. typedef int (*rv40_loop_filter_strength_func)(uint8_t *src, ptrdiff_t stride,
  45. int beta, int beta2, int edge,
  46. int *p1, int *q1);
  47. typedef struct RV34DSPContext {
  48. qpel_mc_func put_pixels_tab[4][16];
  49. qpel_mc_func avg_pixels_tab[4][16];
  50. h264_chroma_mc_func put_chroma_pixels_tab[3];
  51. h264_chroma_mc_func avg_chroma_pixels_tab[3];
  52. /**
  53. * Biweight functions, first dimension is transform size (16/8),
  54. * second is whether the weight is prescaled by 1/512 to skip
  55. * the intermediate shifting.
  56. */
  57. rv40_weight_func rv40_weight_pixels_tab[2][2];
  58. rv34_inv_transform_func rv34_inv_transform;
  59. rv34_inv_transform_func rv34_inv_transform_dc;
  60. rv34_idct_add_func rv34_idct_add;
  61. rv34_idct_dc_add_func rv34_idct_dc_add;
  62. rv40_weak_loop_filter_func rv40_weak_loop_filter[2];
  63. rv40_strong_loop_filter_func rv40_strong_loop_filter[2];
  64. rv40_loop_filter_strength_func rv40_loop_filter_strength[2];
  65. } RV34DSPContext;
  66. void ff_rv30dsp_init(RV34DSPContext *c);
  67. void ff_rv34dsp_init(RV34DSPContext *c);
  68. void ff_rv40dsp_init(RV34DSPContext *c);
  69. void ff_rv34dsp_init_arm(RV34DSPContext *c);
  70. void ff_rv34dsp_init_x86(RV34DSPContext *c);
  71. void ff_rv40dsp_init_aarch64(RV34DSPContext *c);
  72. void ff_rv40dsp_init_x86(RV34DSPContext *c);
  73. void ff_rv40dsp_init_arm(RV34DSPContext *c);
  74. #endif /* AVCODEC_RV34DSP_H */