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.

299 lines
9.4KB

  1. /*
  2. * Copyright (C) 2004 the ffmpeg project
  3. *
  4. * This file is part of Libav.
  5. *
  6. * Libav 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. * Libav 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 Libav; if not, write to the Free Software
  18. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  19. */
  20. /**
  21. * @file
  22. * Standard C DSP-oriented functions cribbed from the original VP3
  23. * source code.
  24. */
  25. #include "libavutil/attributes.h"
  26. #include "libavutil/common.h"
  27. #include "avcodec.h"
  28. #include "dsputil.h"
  29. #include "rnd_avg.h"
  30. #include "vp3dsp.h"
  31. #define IdctAdjustBeforeShift 8
  32. #define xC1S7 64277
  33. #define xC2S6 60547
  34. #define xC3S5 54491
  35. #define xC4S4 46341
  36. #define xC5S3 36410
  37. #define xC6S2 25080
  38. #define xC7S1 12785
  39. #define M(a,b) (((a) * (b))>>16)
  40. static av_always_inline void idct(uint8_t *dst, int stride, int16_t *input, int type)
  41. {
  42. int16_t *ip = input;
  43. int A, B, C, D, Ad, Bd, Cd, Dd, E, F, G, H;
  44. int Ed, Gd, Add, Bdd, Fd, Hd;
  45. int i;
  46. /* Inverse DCT on the rows now */
  47. for (i = 0; i < 8; i++) {
  48. /* Check for non-zero values */
  49. if ( ip[0 * 8] | ip[1 * 8] | ip[2 * 8] | ip[3 * 8] |
  50. ip[4 * 8] | ip[5 * 8] | ip[6 * 8] | ip[7 * 8] ) {
  51. A = M(xC1S7, ip[1 * 8]) + M(xC7S1, ip[7 * 8]);
  52. B = M(xC7S1, ip[1 * 8]) - M(xC1S7, ip[7 * 8]);
  53. C = M(xC3S5, ip[3 * 8]) + M(xC5S3, ip[5 * 8]);
  54. D = M(xC3S5, ip[5 * 8]) - M(xC5S3, ip[3 * 8]);
  55. Ad = M(xC4S4, (A - C));
  56. Bd = M(xC4S4, (B - D));
  57. Cd = A + C;
  58. Dd = B + D;
  59. E = M(xC4S4, (ip[0 * 8] + ip[4 * 8]));
  60. F = M(xC4S4, (ip[0 * 8] - ip[4 * 8]));
  61. G = M(xC2S6, ip[2 * 8]) + M(xC6S2, ip[6 * 8]);
  62. H = M(xC6S2, ip[2 * 8]) - M(xC2S6, ip[6 * 8]);
  63. Ed = E - G;
  64. Gd = E + G;
  65. Add = F + Ad;
  66. Bdd = Bd - H;
  67. Fd = F - Ad;
  68. Hd = Bd + H;
  69. /* Final sequence of operations over-write original inputs. */
  70. ip[0 * 8] = Gd + Cd ;
  71. ip[7 * 8] = Gd - Cd ;
  72. ip[1 * 8] = Add + Hd;
  73. ip[2 * 8] = Add - Hd;
  74. ip[3 * 8] = Ed + Dd ;
  75. ip[4 * 8] = Ed - Dd ;
  76. ip[5 * 8] = Fd + Bdd;
  77. ip[6 * 8] = Fd - Bdd;
  78. }
  79. ip += 1; /* next row */
  80. }
  81. ip = input;
  82. for ( i = 0; i < 8; i++) {
  83. /* Check for non-zero values (bitwise or faster than ||) */
  84. if ( ip[1] | ip[2] | ip[3] |
  85. ip[4] | ip[5] | ip[6] | ip[7] ) {
  86. A = M(xC1S7, ip[1]) + M(xC7S1, ip[7]);
  87. B = M(xC7S1, ip[1]) - M(xC1S7, ip[7]);
  88. C = M(xC3S5, ip[3]) + M(xC5S3, ip[5]);
  89. D = M(xC3S5, ip[5]) - M(xC5S3, ip[3]);
  90. Ad = M(xC4S4, (A - C));
  91. Bd = M(xC4S4, (B - D));
  92. Cd = A + C;
  93. Dd = B + D;
  94. E = M(xC4S4, (ip[0] + ip[4])) + 8;
  95. F = M(xC4S4, (ip[0] - ip[4])) + 8;
  96. if(type==1){ //HACK
  97. E += 16*128;
  98. F += 16*128;
  99. }
  100. G = M(xC2S6, ip[2]) + M(xC6S2, ip[6]);
  101. H = M(xC6S2, ip[2]) - M(xC2S6, ip[6]);
  102. Ed = E - G;
  103. Gd = E + G;
  104. Add = F + Ad;
  105. Bdd = Bd - H;
  106. Fd = F - Ad;
  107. Hd = Bd + H;
  108. /* Final sequence of operations over-write original inputs. */
  109. if (type == 1) {
  110. dst[0*stride] = av_clip_uint8((Gd + Cd ) >> 4);
  111. dst[7*stride] = av_clip_uint8((Gd - Cd ) >> 4);
  112. dst[1*stride] = av_clip_uint8((Add + Hd ) >> 4);
  113. dst[2*stride] = av_clip_uint8((Add - Hd ) >> 4);
  114. dst[3*stride] = av_clip_uint8((Ed + Dd ) >> 4);
  115. dst[4*stride] = av_clip_uint8((Ed - Dd ) >> 4);
  116. dst[5*stride] = av_clip_uint8((Fd + Bdd ) >> 4);
  117. dst[6*stride] = av_clip_uint8((Fd - Bdd ) >> 4);
  118. }else{
  119. dst[0*stride] = av_clip_uint8(dst[0*stride] + ((Gd + Cd ) >> 4));
  120. dst[7*stride] = av_clip_uint8(dst[7*stride] + ((Gd - Cd ) >> 4));
  121. dst[1*stride] = av_clip_uint8(dst[1*stride] + ((Add + Hd ) >> 4));
  122. dst[2*stride] = av_clip_uint8(dst[2*stride] + ((Add - Hd ) >> 4));
  123. dst[3*stride] = av_clip_uint8(dst[3*stride] + ((Ed + Dd ) >> 4));
  124. dst[4*stride] = av_clip_uint8(dst[4*stride] + ((Ed - Dd ) >> 4));
  125. dst[5*stride] = av_clip_uint8(dst[5*stride] + ((Fd + Bdd ) >> 4));
  126. dst[6*stride] = av_clip_uint8(dst[6*stride] + ((Fd - Bdd ) >> 4));
  127. }
  128. } else {
  129. if (type == 1) {
  130. dst[0*stride]=
  131. dst[1*stride]=
  132. dst[2*stride]=
  133. dst[3*stride]=
  134. dst[4*stride]=
  135. dst[5*stride]=
  136. dst[6*stride]=
  137. dst[7*stride]= av_clip_uint8(128 + ((xC4S4 * ip[0] + (IdctAdjustBeforeShift<<16))>>20));
  138. }else{
  139. if(ip[0]){
  140. int v= ((xC4S4 * ip[0] + (IdctAdjustBeforeShift<<16))>>20);
  141. dst[0*stride] = av_clip_uint8(dst[0*stride] + v);
  142. dst[1*stride] = av_clip_uint8(dst[1*stride] + v);
  143. dst[2*stride] = av_clip_uint8(dst[2*stride] + v);
  144. dst[3*stride] = av_clip_uint8(dst[3*stride] + v);
  145. dst[4*stride] = av_clip_uint8(dst[4*stride] + v);
  146. dst[5*stride] = av_clip_uint8(dst[5*stride] + v);
  147. dst[6*stride] = av_clip_uint8(dst[6*stride] + v);
  148. dst[7*stride] = av_clip_uint8(dst[7*stride] + v);
  149. }
  150. }
  151. }
  152. ip += 8; /* next column */
  153. dst++;
  154. }
  155. }
  156. static void vp3_idct_put_c(uint8_t *dest/*align 8*/, int line_size,
  157. int16_t *block/*align 16*/)
  158. {
  159. idct(dest, line_size, block, 1);
  160. memset(block, 0, sizeof(*block) * 64);
  161. }
  162. static void vp3_idct_add_c(uint8_t *dest/*align 8*/, int line_size,
  163. int16_t *block/*align 16*/)
  164. {
  165. idct(dest, line_size, block, 2);
  166. memset(block, 0, sizeof(*block) * 64);
  167. }
  168. static void vp3_idct_dc_add_c(uint8_t *dest/*align 8*/, int line_size,
  169. int16_t *block/*align 16*/)
  170. {
  171. int i, dc = (block[0] + 15) >> 5;
  172. for(i = 0; i < 8; i++){
  173. dest[0] = av_clip_uint8(dest[0] + dc);
  174. dest[1] = av_clip_uint8(dest[1] + dc);
  175. dest[2] = av_clip_uint8(dest[2] + dc);
  176. dest[3] = av_clip_uint8(dest[3] + dc);
  177. dest[4] = av_clip_uint8(dest[4] + dc);
  178. dest[5] = av_clip_uint8(dest[5] + dc);
  179. dest[6] = av_clip_uint8(dest[6] + dc);
  180. dest[7] = av_clip_uint8(dest[7] + dc);
  181. dest += line_size;
  182. }
  183. block[0] = 0;
  184. }
  185. static void vp3_v_loop_filter_c(uint8_t *first_pixel, int stride,
  186. int *bounding_values)
  187. {
  188. unsigned char *end;
  189. int filter_value;
  190. const int nstride= -stride;
  191. for (end= first_pixel + 8; first_pixel < end; first_pixel++) {
  192. filter_value =
  193. (first_pixel[2 * nstride] - first_pixel[ stride])
  194. +3*(first_pixel[0 ] - first_pixel[nstride]);
  195. filter_value = bounding_values[(filter_value + 4) >> 3];
  196. first_pixel[nstride] = av_clip_uint8(first_pixel[nstride] + filter_value);
  197. first_pixel[0] = av_clip_uint8(first_pixel[0] - filter_value);
  198. }
  199. }
  200. static void vp3_h_loop_filter_c(uint8_t *first_pixel, int stride,
  201. int *bounding_values)
  202. {
  203. unsigned char *end;
  204. int filter_value;
  205. for (end= first_pixel + 8*stride; first_pixel != end; first_pixel += stride) {
  206. filter_value =
  207. (first_pixel[-2] - first_pixel[ 1])
  208. +3*(first_pixel[ 0] - first_pixel[-1]);
  209. filter_value = bounding_values[(filter_value + 4) >> 3];
  210. first_pixel[-1] = av_clip_uint8(first_pixel[-1] + filter_value);
  211. first_pixel[ 0] = av_clip_uint8(first_pixel[ 0] - filter_value);
  212. }
  213. }
  214. static void put_no_rnd_pixels_l2(uint8_t *dst, const uint8_t *src1,
  215. const uint8_t *src2, ptrdiff_t stride, int h)
  216. {
  217. int i;
  218. for (i = 0; i < h; i++) {
  219. uint32_t a, b;
  220. a = AV_RN32(&src1[i * stride]);
  221. b = AV_RN32(&src2[i * stride]);
  222. AV_WN32A(&dst[i * stride], no_rnd_avg32(a, b));
  223. a = AV_RN32(&src1[i * stride + 4]);
  224. b = AV_RN32(&src2[i * stride + 4]);
  225. AV_WN32A(&dst[i * stride + 4], no_rnd_avg32(a, b));
  226. }
  227. }
  228. av_cold void ff_vp3dsp_init(VP3DSPContext *c, int flags)
  229. {
  230. c->put_no_rnd_pixels_l2 = put_no_rnd_pixels_l2;
  231. c->idct_put = vp3_idct_put_c;
  232. c->idct_add = vp3_idct_add_c;
  233. c->idct_dc_add = vp3_idct_dc_add_c;
  234. c->v_loop_filter = vp3_v_loop_filter_c;
  235. c->h_loop_filter = vp3_h_loop_filter_c;
  236. if (ARCH_ARM)
  237. ff_vp3dsp_init_arm(c, flags);
  238. if (ARCH_BFIN)
  239. ff_vp3dsp_init_bfin(c, flags);
  240. if (ARCH_PPC)
  241. ff_vp3dsp_init_ppc(c, flags);
  242. if (ARCH_X86)
  243. ff_vp3dsp_init_x86(c, flags);
  244. }