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.

54 lines
1.6KB

  1. /*
  2. * MMX optimized DSP utils
  3. * Copyright (c) 2007 Aurelien Jacobs <aurel@gnuage.org>
  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. #ifndef FFMPEG_DSPUTIL_MMX_H
  22. #define FFMPEG_DSPUTIL_MMX_H
  23. extern const uint64_t ff_bone;
  24. extern const uint64_t ff_wtwo;
  25. extern const uint64_t ff_pdw_80000000[2];
  26. extern const uint64_t ff_pw_3;
  27. extern const uint64_t ff_pw_4;
  28. extern const uint64_t ff_pw_5;
  29. extern const uint64_t ff_pw_8;
  30. extern const uint64_t ff_pw_15;
  31. extern const uint64_t ff_pw_16;
  32. extern const uint64_t ff_pw_20;
  33. extern const uint64_t ff_pw_32;
  34. extern const uint64_t ff_pw_42;
  35. extern const uint64_t ff_pw_64;
  36. extern const uint64_t ff_pw_96;
  37. extern const uint64_t ff_pw_128;
  38. extern const uint64_t ff_pb_1;
  39. extern const uint64_t ff_pb_3;
  40. extern const uint64_t ff_pb_7;
  41. extern const uint64_t ff_pb_3F;
  42. extern const uint64_t ff_pb_A1;
  43. extern const uint64_t ff_pb_FC;
  44. extern const double ff_pd_1[2];
  45. extern const double ff_pd_2[2];
  46. #endif /* FFMPEG_DSPUTIL_MMX_H */