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.

188 lines
6.9KB

  1. /*
  2. * Copyright (c) 2002 The Libav 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. #include "avcodec.h"
  21. #include "idctdsp.h"
  22. #include "mpegvideo.h"
  23. #include "msmpeg4data.h"
  24. #include "simple_idct.h"
  25. #include "wmv2.h"
  26. av_cold void ff_wmv2_common_init(Wmv2Context * w){
  27. MpegEncContext * const s= &w->s;
  28. ff_blockdsp_init(&s->bdsp, s->avctx);
  29. ff_wmv2dsp_init(&w->wdsp);
  30. s->idsp.perm_type = w->wdsp.idct_perm;
  31. ff_init_scantable_permutation(s->idsp.idct_permutation,
  32. w->wdsp.idct_perm);
  33. ff_init_scantable(s->idsp.idct_permutation, &w->abt_scantable[0],
  34. ff_wmv2_scantableA);
  35. ff_init_scantable(s->idsp.idct_permutation, &w->abt_scantable[1],
  36. ff_wmv2_scantableB);
  37. ff_init_scantable(s->idsp.idct_permutation, &s->intra_scantable,
  38. ff_wmv1_scantable[1]);
  39. ff_init_scantable(s->idsp.idct_permutation, &s->intra_h_scantable,
  40. ff_wmv1_scantable[2]);
  41. ff_init_scantable(s->idsp.idct_permutation, &s->intra_v_scantable,
  42. ff_wmv1_scantable[3]);
  43. ff_init_scantable(s->idsp.idct_permutation, &s->inter_scantable,
  44. ff_wmv1_scantable[0]);
  45. s->idsp.idct_put = w->wdsp.idct_put;
  46. s->idsp.idct_add = w->wdsp.idct_add;
  47. s->idsp.idct = NULL;
  48. }
  49. static void wmv2_add_block(Wmv2Context *w, int16_t *block1, uint8_t *dst, int stride, int n){
  50. MpegEncContext * const s= &w->s;
  51. if (s->block_last_index[n] >= 0) {
  52. switch(w->abt_type_table[n]){
  53. case 0:
  54. w->wdsp.idct_add(dst, stride, block1);
  55. break;
  56. case 1:
  57. ff_simple_idct84_add(dst , stride, block1);
  58. ff_simple_idct84_add(dst + 4*stride, stride, w->abt_block2[n]);
  59. s->bdsp.clear_block(w->abt_block2[n]);
  60. break;
  61. case 2:
  62. ff_simple_idct48_add(dst , stride, block1);
  63. ff_simple_idct48_add(dst + 4 , stride, w->abt_block2[n]);
  64. s->bdsp.clear_block(w->abt_block2[n]);
  65. break;
  66. default:
  67. av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n");
  68. }
  69. }
  70. }
  71. void ff_wmv2_add_mb(MpegEncContext *s, int16_t block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr){
  72. Wmv2Context * const w= (Wmv2Context*)s;
  73. wmv2_add_block(w, block1[0], dest_y , s->linesize, 0);
  74. wmv2_add_block(w, block1[1], dest_y + 8 , s->linesize, 1);
  75. wmv2_add_block(w, block1[2], dest_y + 8*s->linesize, s->linesize, 2);
  76. wmv2_add_block(w, block1[3], dest_y + 8 + 8*s->linesize, s->linesize, 3);
  77. if(s->flags&CODEC_FLAG_GRAY) return;
  78. wmv2_add_block(w, block1[4], dest_cb , s->uvlinesize, 4);
  79. wmv2_add_block(w, block1[5], dest_cr , s->uvlinesize, 5);
  80. }
  81. void ff_mspel_motion(MpegEncContext *s,
  82. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  83. uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
  84. int motion_x, int motion_y, int h)
  85. {
  86. Wmv2Context * const w= (Wmv2Context*)s;
  87. uint8_t *ptr;
  88. int dxy, offset, mx, my, src_x, src_y, v_edge_pos;
  89. ptrdiff_t linesize, uvlinesize;
  90. int emu=0;
  91. dxy = ((motion_y & 1) << 1) | (motion_x & 1);
  92. dxy = 2*dxy + w->hshift;
  93. src_x = s->mb_x * 16 + (motion_x >> 1);
  94. src_y = s->mb_y * 16 + (motion_y >> 1);
  95. /* WARNING: do no forget half pels */
  96. v_edge_pos = s->v_edge_pos;
  97. src_x = av_clip(src_x, -16, s->width);
  98. src_y = av_clip(src_y, -16, s->height);
  99. if(src_x<=-16 || src_x >= s->width)
  100. dxy &= ~3;
  101. if(src_y<=-16 || src_y >= s->height)
  102. dxy &= ~4;
  103. linesize = s->linesize;
  104. uvlinesize = s->uvlinesize;
  105. ptr = ref_picture[0] + (src_y * linesize) + src_x;
  106. if(src_x<1 || src_y<1 || src_x + 17 >= s->h_edge_pos
  107. || src_y + h+1 >= v_edge_pos){
  108. s->vdsp.emulated_edge_mc(s->edge_emu_buffer,
  109. ptr - 1 - s->linesize,
  110. s->linesize, s->linesize,
  111. 19, 19,
  112. src_x - 1, src_y - 1,
  113. s->h_edge_pos, s->v_edge_pos);
  114. ptr= s->edge_emu_buffer + 1 + s->linesize;
  115. emu=1;
  116. }
  117. w->wdsp.put_mspel_pixels_tab[dxy](dest_y, ptr, linesize);
  118. w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8, ptr + 8, linesize);
  119. w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8 * linesize, ptr + 8 * linesize, linesize);
  120. w->wdsp.put_mspel_pixels_tab[dxy](dest_y + 8 + 8 * linesize, ptr + 8 + 8 * linesize, linesize);
  121. if(s->flags&CODEC_FLAG_GRAY) return;
  122. if (s->out_format == FMT_H263) {
  123. dxy = 0;
  124. if ((motion_x & 3) != 0)
  125. dxy |= 1;
  126. if ((motion_y & 3) != 0)
  127. dxy |= 2;
  128. mx = motion_x >> 2;
  129. my = motion_y >> 2;
  130. } else {
  131. mx = motion_x / 2;
  132. my = motion_y / 2;
  133. dxy = ((my & 1) << 1) | (mx & 1);
  134. mx >>= 1;
  135. my >>= 1;
  136. }
  137. src_x = s->mb_x * 8 + mx;
  138. src_y = s->mb_y * 8 + my;
  139. src_x = av_clip(src_x, -8, s->width >> 1);
  140. if (src_x == (s->width >> 1))
  141. dxy &= ~1;
  142. src_y = av_clip(src_y, -8, s->height >> 1);
  143. if (src_y == (s->height >> 1))
  144. dxy &= ~2;
  145. offset = (src_y * uvlinesize) + src_x;
  146. ptr = ref_picture[1] + offset;
  147. if(emu){
  148. s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr,
  149. s->uvlinesize, s->uvlinesize,
  150. 9, 9,
  151. src_x, src_y,
  152. s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  153. ptr= s->edge_emu_buffer;
  154. }
  155. pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1);
  156. ptr = ref_picture[2] + offset;
  157. if(emu){
  158. s->vdsp.emulated_edge_mc(s->edge_emu_buffer, ptr,
  159. s->uvlinesize, s->uvlinesize,
  160. 9, 9,
  161. src_x, src_y,
  162. s->h_edge_pos >> 1, s->v_edge_pos >> 1);
  163. ptr= s->edge_emu_buffer;
  164. }
  165. pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1);
  166. }