vc1dsp.h 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * VC-1 and WMV3 decoder - DSP functions
  3. * Copyright (c) 2006 Konstantin Shishkov
  4. *
  5. * This file is part of Libav.
  6. *
  7. * Libav 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. * Libav 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 Libav; 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. * VC-1 and WMV3 decoder
  24. *
  25. */
  26. #ifndef AVCODEC_VC1DSP_H
  27. #define AVCODEC_VC1DSP_H
  28. #include "dsputil.h"
  29. typedef void (*vc1_idct_func)(uint8_t *dest, int line_size, DCTELEM *block);
  30. typedef struct VC1DSPContext {
  31. /* vc1 functions */
  32. vc1_idct_func vc1_inv_trans_8x8_add;
  33. vc1_idct_func vc1_inv_trans_8x8_put_signed[2];
  34. vc1_idct_func vc1_inv_trans_8x8_put[2];
  35. void (*vc1_inv_trans_8x4)(uint8_t *dest, int line_size, DCTELEM *block);
  36. void (*vc1_inv_trans_4x8)(uint8_t *dest, int line_size, DCTELEM *block);
  37. void (*vc1_inv_trans_4x4)(uint8_t *dest, int line_size, DCTELEM *block);
  38. void (*vc1_inv_trans_8x8_dc)(uint8_t *dest, int line_size, DCTELEM *block);
  39. void (*vc1_inv_trans_8x4_dc)(uint8_t *dest, int line_size, DCTELEM *block);
  40. void (*vc1_inv_trans_4x8_dc)(uint8_t *dest, int line_size, DCTELEM *block);
  41. void (*vc1_inv_trans_4x4_dc)(uint8_t *dest, int line_size, DCTELEM *block);
  42. void (*vc1_v_overlap)(uint8_t* src, int stride);
  43. void (*vc1_h_overlap)(uint8_t* src, int stride);
  44. void (*vc1_v_loop_filter4)(uint8_t *src, int stride, int pq);
  45. void (*vc1_h_loop_filter4)(uint8_t *src, int stride, int pq);
  46. void (*vc1_v_loop_filter8)(uint8_t *src, int stride, int pq);
  47. void (*vc1_h_loop_filter8)(uint8_t *src, int stride, int pq);
  48. void (*vc1_v_loop_filter16)(uint8_t *src, int stride, int pq);
  49. void (*vc1_h_loop_filter16)(uint8_t *src, int stride, int pq);
  50. /* put 8x8 block with bicubic interpolation and quarterpel precision
  51. * last argument is actually round value instead of height
  52. */
  53. op_pixels_func put_vc1_mspel_pixels_tab[16];
  54. op_pixels_func avg_vc1_mspel_pixels_tab[16];
  55. /* This is really one func used in VC-1 decoding */
  56. h264_chroma_mc_func put_no_rnd_vc1_chroma_pixels_tab[3];
  57. h264_chroma_mc_func avg_no_rnd_vc1_chroma_pixels_tab[3];
  58. } VC1DSPContext;
  59. void ff_vc1dsp_init(VC1DSPContext* c);
  60. void ff_vc1dsp_init_altivec(VC1DSPContext* c);
  61. void ff_vc1dsp_init_mmx(VC1DSPContext* dsp);
  62. #endif /* AVCODEC_VC1DSP_H */