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.

57 lines
1.7KB

  1. /*
  2. * This file is part of Libav.
  3. *
  4. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #include <stdint.h>
  19. #include "libavutil/attributes.h"
  20. #include "libavutil/bswap.h"
  21. #include "bswapdsp.h"
  22. static void bswap_buf(uint32_t *dst, const uint32_t *src, int w)
  23. {
  24. int i;
  25. for (i = 0; i + 8 <= w; i += 8) {
  26. dst[i + 0] = av_bswap32(src[i + 0]);
  27. dst[i + 1] = av_bswap32(src[i + 1]);
  28. dst[i + 2] = av_bswap32(src[i + 2]);
  29. dst[i + 3] = av_bswap32(src[i + 3]);
  30. dst[i + 4] = av_bswap32(src[i + 4]);
  31. dst[i + 5] = av_bswap32(src[i + 5]);
  32. dst[i + 6] = av_bswap32(src[i + 6]);
  33. dst[i + 7] = av_bswap32(src[i + 7]);
  34. }
  35. for (; i < w; i++)
  36. dst[i + 0] = av_bswap32(src[i + 0]);
  37. }
  38. static void bswap16_buf(uint16_t *dst, const uint16_t *src, int len)
  39. {
  40. while (len--)
  41. *dst++ = av_bswap16(*src++);
  42. }
  43. av_cold void ff_bswapdsp_init(BswapDSPContext *c)
  44. {
  45. c->bswap_buf = bswap_buf;
  46. c->bswap16_buf = bswap16_buf;
  47. if (ARCH_X86)
  48. ff_bswapdsp_init_x86(c);
  49. }