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.

176 lines
6.4KB

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