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.

139 lines
4.1KB

  1. /*
  2. * Copyright (c) 2012 Mans Rullgard <mans@mansr.com>
  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 "libavutil/attributes.h"
  21. #include "libavutil/samplefmt.h"
  22. #include "flacdsp.h"
  23. #include "config.h"
  24. #define SAMPLE_SIZE 16
  25. #define PLANAR 0
  26. #include "flacdsp_template.c"
  27. #include "flacdsp_lpc_template.c"
  28. #undef PLANAR
  29. #define PLANAR 1
  30. #include "flacdsp_template.c"
  31. #undef SAMPLE_SIZE
  32. #undef PLANAR
  33. #define SAMPLE_SIZE 32
  34. #define PLANAR 0
  35. #include "flacdsp_template.c"
  36. #include "flacdsp_lpc_template.c"
  37. #undef PLANAR
  38. #define PLANAR 1
  39. #include "flacdsp_template.c"
  40. // For debuging we use signed operations so overflows can be detected (by ubsan)
  41. // For production we use unsigned so there are no undefined operations
  42. #ifdef CHECKED
  43. #define SUINT int
  44. #else
  45. #define SUINT unsigned
  46. #endif
  47. static void flac_lpc_16_c(int32_t *decoded, const int coeffs[32],
  48. int pred_order, int qlevel, int len)
  49. {
  50. int i, j;
  51. for (i = pred_order; i < len - 1; i += 2, decoded += 2) {
  52. SUINT c = coeffs[0];
  53. SUINT d = decoded[0];
  54. int s0 = 0, s1 = 0;
  55. for (j = 1; j < pred_order; j++) {
  56. s0 += c*d;
  57. d = decoded[j];
  58. s1 += c*d;
  59. c = coeffs[j];
  60. }
  61. s0 += c*d;
  62. d = decoded[j] += s0 >> qlevel;
  63. s1 += c*d;
  64. decoded[j + 1] += s1 >> qlevel;
  65. }
  66. if (i < len) {
  67. int sum = 0;
  68. for (j = 0; j < pred_order; j++)
  69. sum += coeffs[j] * (SUINT)decoded[j];
  70. decoded[j] += sum >> qlevel;
  71. }
  72. }
  73. static void flac_lpc_32_c(int32_t *decoded, const int coeffs[32],
  74. int pred_order, int qlevel, int len)
  75. {
  76. int i, j;
  77. for (i = pred_order; i < len; i++, decoded++) {
  78. int64_t sum = 0;
  79. for (j = 0; j < pred_order; j++)
  80. sum += (int64_t)coeffs[j] * decoded[j];
  81. decoded[j] += sum >> qlevel;
  82. }
  83. }
  84. av_cold void ff_flacdsp_init(FLACDSPContext *c, enum AVSampleFormat fmt, int channels,
  85. int bps)
  86. {
  87. c->lpc16 = flac_lpc_16_c;
  88. c->lpc32 = flac_lpc_32_c;
  89. c->lpc16_encode = flac_lpc_encode_c_16;
  90. c->lpc32_encode = flac_lpc_encode_c_32;
  91. switch (fmt) {
  92. case AV_SAMPLE_FMT_S32:
  93. c->decorrelate[0] = flac_decorrelate_indep_c_32;
  94. c->decorrelate[1] = flac_decorrelate_ls_c_32;
  95. c->decorrelate[2] = flac_decorrelate_rs_c_32;
  96. c->decorrelate[3] = flac_decorrelate_ms_c_32;
  97. break;
  98. case AV_SAMPLE_FMT_S32P:
  99. c->decorrelate[0] = flac_decorrelate_indep_c_32p;
  100. c->decorrelate[1] = flac_decorrelate_ls_c_32p;
  101. c->decorrelate[2] = flac_decorrelate_rs_c_32p;
  102. c->decorrelate[3] = flac_decorrelate_ms_c_32p;
  103. break;
  104. case AV_SAMPLE_FMT_S16:
  105. c->decorrelate[0] = flac_decorrelate_indep_c_16;
  106. c->decorrelate[1] = flac_decorrelate_ls_c_16;
  107. c->decorrelate[2] = flac_decorrelate_rs_c_16;
  108. c->decorrelate[3] = flac_decorrelate_ms_c_16;
  109. break;
  110. case AV_SAMPLE_FMT_S16P:
  111. c->decorrelate[0] = flac_decorrelate_indep_c_16p;
  112. c->decorrelate[1] = flac_decorrelate_ls_c_16p;
  113. c->decorrelate[2] = flac_decorrelate_rs_c_16p;
  114. c->decorrelate[3] = flac_decorrelate_ms_c_16p;
  115. break;
  116. }
  117. if (ARCH_ARM)
  118. ff_flacdsp_init_arm(c, fmt, channels, bps);
  119. if (ARCH_X86)
  120. ff_flacdsp_init_x86(c, fmt, channels, bps);
  121. }