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.

78 lines
2.4KB

  1. /*
  2. * Copyright (c) 2002 Dieter Shirley
  3. *
  4. * This library is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2 of the License, or (at your option) any later version.
  8. *
  9. * This library is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with this library; if not, write to the Free Software
  16. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  17. */
  18. #include <time.h>
  19. #include "../../config.h"
  20. #include "../dsputil.h"
  21. #include "../mpegvideo.h"
  22. #ifdef HAVE_ALTIVEC
  23. #include "dsputil_altivec.h"
  24. #endif
  25. extern int dct_quantize_altivec(MpegEncContext *s,
  26. DCTELEM *block, int n,
  27. int qscale, int *overflow);
  28. extern void idct_put_altivec(UINT8 *dest, int line_size, INT16 *block);
  29. extern void idct_add_altivec(UINT8 *dest, int line_size, INT16 *block);
  30. void MPV_common_init_ppc(MpegEncContext *s)
  31. {
  32. #if HAVE_ALTIVEC
  33. if (has_altivec())
  34. {
  35. if ((s->avctx->idct_algo == FF_IDCT_AUTO) ||
  36. (s->avctx->idct_algo == FF_IDCT_ALTIVEC))
  37. {
  38. s->idct_put = idct_put_altivec;
  39. s->idct_add = idct_add_altivec;
  40. s->idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
  41. }
  42. // Test to make sure that the dct required alignments are met.
  43. if ((((long)(s->q_intra_matrix) & 0x0f) != 0) ||
  44. (((long)(s->q_inter_matrix) & 0x0f) != 0))
  45. {
  46. fprintf(stderr, "Internal Error: q-matrix blocks must be 16-byte aligned "
  47. "to use Altivec DCT. Reverting to non-altivec version.\n");
  48. return;
  49. }
  50. if (((long)(s->intra_scantable.inverse) & 0x0f) != 0)
  51. {
  52. fprintf(stderr, "Internal Error: scan table blocks must be 16-byte aligned "
  53. "to use Altivec DCT. Reverting to non-altivec version.\n");
  54. return;
  55. }
  56. if ((s->avctx->dct_algo == FF_DCT_AUTO) ||
  57. (s->avctx->dct_algo == FF_DCT_ALTIVEC))
  58. {
  59. s->dct_quantize = dct_quantize_altivec;
  60. }
  61. } else
  62. #endif
  63. {
  64. /* Non-AltiVec PPC optimisations here */
  65. }
  66. }