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.

88 lines
2.9KB

  1. /*
  2. * Copyright (c) 2002 Dieter Shirley
  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. #include "../dsputil.h"
  21. #include "../mpegvideo.h"
  22. #include <time.h>
  23. #ifdef HAVE_ALTIVEC
  24. #include "dsputil_altivec.h"
  25. #endif
  26. extern int dct_quantize_altivec(MpegEncContext *s,
  27. DCTELEM *block, int n,
  28. int qscale, int *overflow);
  29. extern void dct_unquantize_h263_altivec(MpegEncContext *s,
  30. DCTELEM *block, int n, int qscale);
  31. extern void idct_put_altivec(uint8_t *dest, int line_size, int16_t *block);
  32. extern void idct_add_altivec(uint8_t *dest, int line_size, int16_t *block);
  33. void MPV_common_init_ppc(MpegEncContext *s)
  34. {
  35. #ifdef HAVE_ALTIVEC
  36. if (has_altivec())
  37. {
  38. if (s->avctx->lowres==0)
  39. {
  40. if ((s->avctx->idct_algo == FF_IDCT_AUTO) ||
  41. (s->avctx->idct_algo == FF_IDCT_ALTIVEC))
  42. {
  43. s->dsp.idct_put = idct_put_altivec;
  44. s->dsp.idct_add = idct_add_altivec;
  45. s->dsp.idct_permutation_type = FF_TRANSPOSE_IDCT_PERM;
  46. }
  47. }
  48. // Test to make sure that the dct required alignments are met.
  49. if ((((long)(s->q_intra_matrix) & 0x0f) != 0) ||
  50. (((long)(s->q_inter_matrix) & 0x0f) != 0))
  51. {
  52. av_log(s->avctx, AV_LOG_INFO, "Internal Error: q-matrix blocks must be 16-byte aligned "
  53. "to use Altivec DCT. Reverting to non-altivec version.\n");
  54. return;
  55. }
  56. if (((long)(s->intra_scantable.inverse) & 0x0f) != 0)
  57. {
  58. av_log(s->avctx, AV_LOG_INFO, "Internal Error: scan table blocks must be 16-byte aligned "
  59. "to use Altivec DCT. Reverting to non-altivec version.\n");
  60. return;
  61. }
  62. if ((s->avctx->dct_algo == FF_DCT_AUTO) ||
  63. (s->avctx->dct_algo == FF_DCT_ALTIVEC))
  64. {
  65. #if 0 /* seems to cause trouble under some circumstances */
  66. s->dct_quantize = dct_quantize_altivec;
  67. #endif
  68. s->dct_unquantize_h263_intra = dct_unquantize_h263_altivec;
  69. s->dct_unquantize_h263_inter = dct_unquantize_h263_altivec;
  70. }
  71. } else
  72. #endif
  73. {
  74. /* Non-AltiVec PPC optimisations here */
  75. }
  76. }