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.

184 lines
6.5KB

  1. /*
  2. * MPEG-4 decoder / encoder common code
  3. * Copyright (c) 2000,2001 Fabrice Bellard
  4. * Copyright (c) 2002-2010 Michael Niedermayer <michaelni@gmx.at>
  5. *
  6. * This file is part of Libav.
  7. *
  8. * Libav is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU Lesser General Public
  10. * License as published by the Free Software Foundation; either
  11. * version 2.1 of the License, or (at your option) any later version.
  12. *
  13. * Libav is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * Lesser General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with Libav; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  21. */
  22. #include "mpegutils.h"
  23. #include "mpegvideo.h"
  24. #include "mpeg4video.h"
  25. #include "mpeg4data.h"
  26. uint8_t ff_mpeg4_static_rl_table_store[3][2][2 * MAX_RUN + MAX_LEVEL + 3];
  27. int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s)
  28. {
  29. switch (s->pict_type) {
  30. case AV_PICTURE_TYPE_I:
  31. return 16;
  32. case AV_PICTURE_TYPE_P:
  33. case AV_PICTURE_TYPE_S:
  34. return s->f_code + 15;
  35. case AV_PICTURE_TYPE_B:
  36. return FFMAX3(s->f_code, s->b_code, 2) + 15;
  37. default:
  38. return -1;
  39. }
  40. }
  41. void ff_mpeg4_clean_buffers(MpegEncContext *s)
  42. {
  43. int c_wrap, c_xy, l_wrap, l_xy;
  44. l_wrap = s->b8_stride;
  45. l_xy = (2 * s->mb_y - 1) * l_wrap + s->mb_x * 2 - 1;
  46. c_wrap = s->mb_stride;
  47. c_xy = (s->mb_y - 1) * c_wrap + s->mb_x - 1;
  48. /* clean AC */
  49. memset(s->ac_val[0] + l_xy, 0, (l_wrap * 2 + 1) * 16 * sizeof(int16_t));
  50. memset(s->ac_val[1] + c_xy, 0, (c_wrap + 1) * 16 * sizeof(int16_t));
  51. memset(s->ac_val[2] + c_xy, 0, (c_wrap + 1) * 16 * sizeof(int16_t));
  52. /* clean MV */
  53. // we can't clear the MVs as they might be needed by a B-frame
  54. s->last_mv[0][0][0] =
  55. s->last_mv[0][0][1] =
  56. s->last_mv[1][0][0] =
  57. s->last_mv[1][0][1] = 0;
  58. }
  59. #define tab_size ((signed)FF_ARRAY_ELEMS(s->direct_scale_mv[0]))
  60. #define tab_bias (tab_size / 2)
  61. // used by MPEG-4 and rv10 decoder
  62. void ff_mpeg4_init_direct_mv(MpegEncContext *s)
  63. {
  64. int i;
  65. for (i = 0; i < tab_size; i++) {
  66. s->direct_scale_mv[0][i] = (i - tab_bias) * s->pb_time / s->pp_time;
  67. s->direct_scale_mv[1][i] = (i - tab_bias) * (s->pb_time - s->pp_time) /
  68. s->pp_time;
  69. }
  70. }
  71. static inline void ff_mpeg4_set_one_direct_mv(MpegEncContext *s, int mx,
  72. int my, int i)
  73. {
  74. int xy = s->block_index[i];
  75. uint16_t time_pp = s->pp_time;
  76. uint16_t time_pb = s->pb_time;
  77. int p_mx, p_my;
  78. p_mx = s->next_picture.motion_val[0][xy][0];
  79. if ((unsigned)(p_mx + tab_bias) < tab_size) {
  80. s->mv[0][i][0] = s->direct_scale_mv[0][p_mx + tab_bias] + mx;
  81. s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx
  82. : s->direct_scale_mv[1][p_mx + tab_bias];
  83. } else {
  84. s->mv[0][i][0] = p_mx * time_pb / time_pp + mx;
  85. s->mv[1][i][0] = mx ? s->mv[0][i][0] - p_mx
  86. : p_mx * (time_pb - time_pp) / time_pp;
  87. }
  88. p_my = s->next_picture.motion_val[0][xy][1];
  89. if ((unsigned)(p_my + tab_bias) < tab_size) {
  90. s->mv[0][i][1] = s->direct_scale_mv[0][p_my + tab_bias] + my;
  91. s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my
  92. : s->direct_scale_mv[1][p_my + tab_bias];
  93. } else {
  94. s->mv[0][i][1] = p_my * time_pb / time_pp + my;
  95. s->mv[1][i][1] = my ? s->mv[0][i][1] - p_my
  96. : p_my * (time_pb - time_pp) / time_pp;
  97. }
  98. }
  99. #undef tab_size
  100. #undef tab_bias
  101. /**
  102. * @return the mb_type
  103. */
  104. int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my)
  105. {
  106. const int mb_index = s->mb_x + s->mb_y * s->mb_stride;
  107. const int colocated_mb_type = s->next_picture.mb_type[mb_index];
  108. uint16_t time_pp;
  109. uint16_t time_pb;
  110. int i;
  111. // FIXME avoid divides
  112. // try special case with shifts for 1 and 3 B-frames?
  113. if (IS_8X8(colocated_mb_type)) {
  114. s->mv_type = MV_TYPE_8X8;
  115. for (i = 0; i < 4; i++)
  116. ff_mpeg4_set_one_direct_mv(s, mx, my, i);
  117. return MB_TYPE_DIRECT2 | MB_TYPE_8x8 | MB_TYPE_L0L1;
  118. } else if (IS_INTERLACED(colocated_mb_type)) {
  119. s->mv_type = MV_TYPE_FIELD;
  120. for (i = 0; i < 2; i++) {
  121. int field_select = s->next_picture.ref_index[0][4 * mb_index + 2 * i];
  122. s->field_select[0][i] = field_select;
  123. s->field_select[1][i] = i;
  124. if (s->top_field_first) {
  125. time_pp = s->pp_field_time - field_select + i;
  126. time_pb = s->pb_field_time - field_select + i;
  127. } else {
  128. time_pp = s->pp_field_time + field_select - i;
  129. time_pb = s->pb_field_time + field_select - i;
  130. }
  131. s->mv[0][i][0] = s->p_field_mv_table[i][0][mb_index][0] *
  132. time_pb / time_pp + mx;
  133. s->mv[0][i][1] = s->p_field_mv_table[i][0][mb_index][1] *
  134. time_pb / time_pp + my;
  135. s->mv[1][i][0] = mx ? s->mv[0][i][0] -
  136. s->p_field_mv_table[i][0][mb_index][0]
  137. : s->p_field_mv_table[i][0][mb_index][0] *
  138. (time_pb - time_pp) / time_pp;
  139. s->mv[1][i][1] = my ? s->mv[0][i][1] -
  140. s->p_field_mv_table[i][0][mb_index][1]
  141. : s->p_field_mv_table[i][0][mb_index][1] *
  142. (time_pb - time_pp) / time_pp;
  143. }
  144. return MB_TYPE_DIRECT2 | MB_TYPE_16x8 |
  145. MB_TYPE_L0L1 | MB_TYPE_INTERLACED;
  146. } else {
  147. ff_mpeg4_set_one_direct_mv(s, mx, my, 0);
  148. s->mv[0][1][0] =
  149. s->mv[0][2][0] =
  150. s->mv[0][3][0] = s->mv[0][0][0];
  151. s->mv[0][1][1] =
  152. s->mv[0][2][1] =
  153. s->mv[0][3][1] = s->mv[0][0][1];
  154. s->mv[1][1][0] =
  155. s->mv[1][2][0] =
  156. s->mv[1][3][0] = s->mv[1][0][0];
  157. s->mv[1][1][1] =
  158. s->mv[1][2][1] =
  159. s->mv[1][3][1] = s->mv[1][0][1];
  160. if ((s->avctx->workaround_bugs & FF_BUG_DIRECT_BLOCKSIZE) ||
  161. !s->quarter_sample)
  162. s->mv_type = MV_TYPE_16X16;
  163. else
  164. s->mv_type = MV_TYPE_8X8;
  165. // Note see prev line
  166. return MB_TYPE_DIRECT2 | MB_TYPE_16x16 | MB_TYPE_L0L1;
  167. }
  168. }