wmv2.c 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  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_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[0], wmv2_scantableA);
  28. ff_init_scantable(s->dsp.idct_permutation, &w->abt_scantable[1], wmv2_scantableB);
  29. }
  30. static void wmv2_add_block(Wmv2Context *w, DCTELEM *block1, uint8_t *dst, int stride, int n){
  31. MpegEncContext * const s= &w->s;
  32. if (s->block_last_index[n] >= 0) {
  33. switch(w->abt_type_table[n]){
  34. case 0:
  35. s->dsp.idct_add (dst, stride, block1);
  36. break;
  37. case 1:
  38. ff_simple_idct84_add(dst , stride, block1);
  39. ff_simple_idct84_add(dst + 4*stride, stride, w->abt_block2[n]);
  40. s->dsp.clear_block(w->abt_block2[n]);
  41. break;
  42. case 2:
  43. ff_simple_idct48_add(dst , stride, block1);
  44. ff_simple_idct48_add(dst + 4 , stride, w->abt_block2[n]);
  45. s->dsp.clear_block(w->abt_block2[n]);
  46. break;
  47. default:
  48. av_log(s->avctx, AV_LOG_ERROR, "internal error in WMV2 abt\n");
  49. }
  50. }
  51. }
  52. void ff_wmv2_add_mb(MpegEncContext *s, DCTELEM block1[6][64], uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr){
  53. Wmv2Context * const w= (Wmv2Context*)s;
  54. wmv2_add_block(w, block1[0], dest_y , s->linesize, 0);
  55. wmv2_add_block(w, block1[1], dest_y + 8 , s->linesize, 1);
  56. wmv2_add_block(w, block1[2], dest_y + 8*s->linesize, s->linesize, 2);
  57. wmv2_add_block(w, block1[3], dest_y + 8 + 8*s->linesize, s->linesize, 3);
  58. if(s->flags&CODEC_FLAG_GRAY) return;
  59. wmv2_add_block(w, block1[4], dest_cb , s->uvlinesize, 4);
  60. wmv2_add_block(w, block1[5], dest_cr , s->uvlinesize, 5);
  61. }
  62. void ff_mspel_motion(MpegEncContext *s,
  63. uint8_t *dest_y, uint8_t *dest_cb, uint8_t *dest_cr,
  64. uint8_t **ref_picture, op_pixels_func (*pix_op)[4],
  65. int motion_x, int motion_y, int h)
  66. {
  67. Wmv2Context * const w= (Wmv2Context*)s;
  68. uint8_t *ptr;
  69. int dxy, offset, mx, my, src_x, src_y, v_edge_pos, linesize, uvlinesize;
  70. int emu=0;
  71. dxy = ((motion_y & 1) << 1) | (motion_x & 1);
  72. dxy = 2*dxy + w->hshift;
  73. src_x = s->mb_x * 16 + (motion_x >> 1);
  74. src_y = s->mb_y * 16 + (motion_y >> 1);
  75. /* WARNING: do no forget half pels */
  76. v_edge_pos = s->v_edge_pos;
  77. src_x = av_clip(src_x, -16, s->width);
  78. src_y = av_clip(src_y, -16, s->height);
  79. if(src_x<=-16 || src_x >= s->width)
  80. dxy &= ~3;
  81. if(src_y<=-16 || src_y >= s->height)
  82. dxy &= ~4;
  83. linesize = s->linesize;
  84. uvlinesize = s->uvlinesize;
  85. ptr = ref_picture[0] + (src_y * linesize) + src_x;
  86. if(s->flags&CODEC_FLAG_EMU_EDGE){
  87. if(src_x<1 || src_y<1 || src_x + 17 >= s->h_edge_pos
  88. || src_y + h+1 >= v_edge_pos){
  89. ff_emulated_edge_mc(s->edge_emu_buffer, ptr - 1 - s->linesize, s->linesize, 19, 19,
  90. src_x-1, src_y-1, s->h_edge_pos, s->v_edge_pos);
  91. ptr= s->edge_emu_buffer + 1 + s->linesize;
  92. emu=1;
  93. }
  94. }
  95. s->dsp.put_mspel_pixels_tab[dxy](dest_y , ptr , linesize);
  96. s->dsp.put_mspel_pixels_tab[dxy](dest_y+8 , ptr+8 , linesize);
  97. s->dsp.put_mspel_pixels_tab[dxy](dest_y +8*linesize, ptr +8*linesize, linesize);
  98. s->dsp.put_mspel_pixels_tab[dxy](dest_y+8+8*linesize, ptr+8+8*linesize, linesize);
  99. if(s->flags&CODEC_FLAG_GRAY) return;
  100. if (s->out_format == FMT_H263) {
  101. dxy = 0;
  102. if ((motion_x & 3) != 0)
  103. dxy |= 1;
  104. if ((motion_y & 3) != 0)
  105. dxy |= 2;
  106. mx = motion_x >> 2;
  107. my = motion_y >> 2;
  108. } else {
  109. mx = motion_x / 2;
  110. my = motion_y / 2;
  111. dxy = ((my & 1) << 1) | (mx & 1);
  112. mx >>= 1;
  113. my >>= 1;
  114. }
  115. src_x = s->mb_x * 8 + mx;
  116. src_y = s->mb_y * 8 + my;
  117. src_x = av_clip(src_x, -8, s->width >> 1);
  118. if (src_x == (s->width >> 1))
  119. dxy &= ~1;
  120. src_y = av_clip(src_y, -8, s->height >> 1);
  121. if (src_y == (s->height >> 1))
  122. dxy &= ~2;
  123. offset = (src_y * uvlinesize) + src_x;
  124. ptr = ref_picture[1] + offset;
  125. if(emu){
  126. ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9,
  127. src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
  128. ptr= s->edge_emu_buffer;
  129. }
  130. pix_op[1][dxy](dest_cb, ptr, uvlinesize, h >> 1);
  131. ptr = ref_picture[2] + offset;
  132. if(emu){
  133. ff_emulated_edge_mc(s->edge_emu_buffer, ptr, s->uvlinesize, 9, 9,
  134. src_x, src_y, s->h_edge_pos>>1, s->v_edge_pos>>1);
  135. ptr= s->edge_emu_buffer;
  136. }
  137. pix_op[1][dxy](dest_cr, ptr, uvlinesize, h >> 1);
  138. }