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.

58 lines
1.8KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg 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.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg 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 FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include "config.h"
  19. #include "libavutil/attributes.h"
  20. #include "avcodec.h"
  21. #include "idctdsp.h"
  22. #include "xvididct.h"
  23. static void idct_xvid_put(uint8_t *dest, int line_size, int16_t *block)
  24. {
  25. ff_idct_xvid(block);
  26. ff_put_pixels_clamped(block, dest, line_size);
  27. }
  28. static void idct_xvid_add(uint8_t *dest, int line_size, int16_t *block)
  29. {
  30. ff_idct_xvid(block);
  31. ff_add_pixels_clamped(block, dest, line_size);
  32. }
  33. av_cold void ff_xvididct_init(IDCTDSPContext *c, AVCodecContext *avctx)
  34. {
  35. const unsigned high_bit_depth = avctx->bits_per_raw_sample > 8;
  36. if (high_bit_depth || avctx->lowres ||
  37. !(avctx->idct_algo == FF_IDCT_AUTO ||
  38. avctx->idct_algo == FF_IDCT_XVID))
  39. return;
  40. if (avctx->idct_algo == FF_IDCT_XVID) {
  41. c->idct_put = idct_xvid_put;
  42. c->idct_add = idct_xvid_add;
  43. c->idct = ff_idct_xvid;
  44. c->perm_type = FF_IDCT_PERM_NONE;
  45. }
  46. if (ARCH_X86)
  47. ff_xvididct_init_x86(c);
  48. ff_init_scantable_permutation(c->idct_permutation, c->perm_type);
  49. }