binkdsp.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * Bink DSP routines
  3. * Copyright (c) 2009 Konstantin Shishkov
  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. /**
  22. * @file
  23. * Bink DSP routines
  24. */
  25. #include "libavutil/attributes.h"
  26. #include "binkdsp.h"
  27. #define A1 2896 /* (1/sqrt(2))<<12 */
  28. #define A2 2217
  29. #define A3 3784
  30. #define A4 -5352
  31. #define MUL(X,Y) ((int)((unsigned)(X) * (Y)) >> 11)
  32. #define IDCT_TRANSFORM(dest,s0,s1,s2,s3,s4,s5,s6,s7,d0,d1,d2,d3,d4,d5,d6,d7,munge,src) {\
  33. const int a0 = (src)[s0] + (src)[s4]; \
  34. const int a1 = (src)[s0] - (src)[s4]; \
  35. const int a2 = (src)[s2] + (src)[s6]; \
  36. const int a3 = MUL(A1, (src)[s2] - (src)[s6]); \
  37. const int a4 = (src)[s5] + (src)[s3]; \
  38. const int a5 = (src)[s5] - (src)[s3]; \
  39. const int a6 = (src)[s1] + (src)[s7]; \
  40. const int a7 = (src)[s1] - (src)[s7]; \
  41. const int b0 = a4 + a6; \
  42. const int b1 = MUL(A3, a5 + a7); \
  43. const int b2 = MUL(A4, a5) - b0 + b1; \
  44. const int b3 = MUL(A1, a6 - a4) - b2; \
  45. const int b4 = MUL(A2, a7) + b3 - b1; \
  46. (dest)[d0] = munge(a0+a2 +b0); \
  47. (dest)[d1] = munge(a1+a3-a2+b2); \
  48. (dest)[d2] = munge(a1-a3+a2+b3); \
  49. (dest)[d3] = munge(a0-a2 -b4); \
  50. (dest)[d4] = munge(a0-a2 +b4); \
  51. (dest)[d5] = munge(a1-a3+a2-b3); \
  52. (dest)[d6] = munge(a1+a3-a2-b2); \
  53. (dest)[d7] = munge(a0+a2 -b0); \
  54. }
  55. /* end IDCT_TRANSFORM macro */
  56. #define MUNGE_NONE(x) (x)
  57. #define IDCT_COL(dest,src) IDCT_TRANSFORM(dest,0,8,16,24,32,40,48,56,0,8,16,24,32,40,48,56,MUNGE_NONE,src)
  58. #define MUNGE_ROW(x) (((x) + 0x7F)>>8)
  59. #define IDCT_ROW(dest,src) IDCT_TRANSFORM(dest,0,1,2,3,4,5,6,7,0,1,2,3,4,5,6,7,MUNGE_ROW,src)
  60. static inline void bink_idct_col(int *dest, const int32_t *src)
  61. {
  62. if ((src[8]|src[16]|src[24]|src[32]|src[40]|src[48]|src[56])==0) {
  63. dest[0] =
  64. dest[8] =
  65. dest[16] =
  66. dest[24] =
  67. dest[32] =
  68. dest[40] =
  69. dest[48] =
  70. dest[56] = src[0];
  71. } else {
  72. IDCT_COL(dest, src);
  73. }
  74. }
  75. static void bink_idct_c(int32_t *block)
  76. {
  77. int i;
  78. int temp[64];
  79. for (i = 0; i < 8; i++)
  80. bink_idct_col(&temp[i], &block[i]);
  81. for (i = 0; i < 8; i++) {
  82. IDCT_ROW( (&block[8*i]), (&temp[8*i]) );
  83. }
  84. }
  85. static void bink_idct_add_c(uint8_t *dest, int linesize, int32_t *block)
  86. {
  87. int i, j;
  88. bink_idct_c(block);
  89. for (i = 0; i < 8; i++, dest += linesize, block += 8)
  90. for (j = 0; j < 8; j++)
  91. dest[j] += block[j];
  92. }
  93. static void bink_idct_put_c(uint8_t *dest, int linesize, int32_t *block)
  94. {
  95. int i;
  96. int temp[64];
  97. for (i = 0; i < 8; i++)
  98. bink_idct_col(&temp[i], &block[i]);
  99. for (i = 0; i < 8; i++) {
  100. IDCT_ROW( (&dest[i*linesize]), (&temp[8*i]) );
  101. }
  102. }
  103. static void scale_block_c(const uint8_t src[64]/*align 8*/, uint8_t *dst/*align 8*/, int linesize)
  104. {
  105. int i, j;
  106. uint16_t *dst1 = (uint16_t *) dst;
  107. uint16_t *dst2 = (uint16_t *)(dst + linesize);
  108. for (j = 0; j < 8; j++) {
  109. for (i = 0; i < 8; i++) {
  110. dst1[i] = dst2[i] = src[i] * 0x0101;
  111. }
  112. src += 8;
  113. dst1 += linesize;
  114. dst2 += linesize;
  115. }
  116. }
  117. static void add_pixels8_c(uint8_t *restrict pixels, int16_t *block,
  118. int line_size)
  119. {
  120. int i;
  121. for (i = 0; i < 8; i++) {
  122. pixels[0] += block[0];
  123. pixels[1] += block[1];
  124. pixels[2] += block[2];
  125. pixels[3] += block[3];
  126. pixels[4] += block[4];
  127. pixels[5] += block[5];
  128. pixels[6] += block[6];
  129. pixels[7] += block[7];
  130. pixels += line_size;
  131. block += 8;
  132. }
  133. }
  134. av_cold void ff_binkdsp_init(BinkDSPContext *c)
  135. {
  136. c->idct_add = bink_idct_add_c;
  137. c->idct_put = bink_idct_put_c;
  138. c->scale_block = scale_block_c;
  139. c->add_pixels8 = add_pixels8_c;
  140. }