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
2.0KB

  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 "ttadsp.h"
  19. static void ttafilter_process_dec_c(int32_t *qm, int32_t *dx, int32_t *dl,
  20. int32_t *error, int32_t *in, int32_t shift,
  21. int32_t round) {
  22. if (*error < 0) {
  23. qm[0] -= dx[0]; qm[1] -= dx[1]; qm[2] -= dx[2]; qm[3] -= dx[3];
  24. qm[4] -= dx[4]; qm[5] -= dx[5]; qm[6] -= dx[6]; qm[7] -= dx[7];
  25. } else if (*error > 0) {
  26. qm[0] += dx[0]; qm[1] += dx[1]; qm[2] += dx[2]; qm[3] += dx[3];
  27. qm[4] += dx[4]; qm[5] += dx[5]; qm[6] += dx[6]; qm[7] += dx[7];
  28. }
  29. round += dl[0] * qm[0] + dl[1] * qm[1] + dl[2] * qm[2] + dl[3] * qm[3] +
  30. dl[4] * qm[4] + dl[5] * qm[5] + dl[6] * qm[6] + dl[7] * qm[7];
  31. dx[0] = dx[1]; dx[1] = dx[2]; dx[2] = dx[3]; dx[3] = dx[4];
  32. dl[0] = dl[1]; dl[1] = dl[2]; dl[2] = dl[3]; dl[3] = dl[4];
  33. dx[4] = ((dl[4] >> 30) | 1);
  34. dx[5] = ((dl[5] >> 30) | 2) & ~1;
  35. dx[6] = ((dl[6] >> 30) | 2) & ~1;
  36. dx[7] = ((dl[7] >> 30) | 4) & ~3;
  37. *error = *in;
  38. *in += (round >> shift);
  39. dl[4] = -dl[5]; dl[5] = -dl[6];
  40. dl[6] = *in - dl[7]; dl[7] = *in;
  41. dl[5] += dl[6]; dl[4] += dl[5];
  42. }
  43. av_cold void ff_ttadsp_init(TTADSPContext *c)
  44. {
  45. c->ttafilter_process_dec = ttafilter_process_dec_c;
  46. if (ARCH_X86)
  47. ff_ttadsp_init_x86(c);
  48. }