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.

135 lines
4.6KB

  1. /*
  2. * Motion estimation
  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. #ifndef AVCODEC_MOTIONEST_H
  21. #define AVCODEC_MOTIONEST_H
  22. #include <stdint.h>
  23. #include "avcodec.h"
  24. #include "hpeldsp.h"
  25. #include "qpeldsp.h"
  26. struct MpegEncContext;
  27. #if ARCH_IA64 // Limit static arrays to avoid gcc failing "short data segment overflowed"
  28. #define MAX_MV 1024
  29. #else
  30. #define MAX_MV 4096
  31. #endif
  32. #define MAX_DMV (2*MAX_MV)
  33. #define FF_ME_ZERO 0
  34. #define FF_ME_EPZS 1
  35. #define FF_ME_XONE 2
  36. /**
  37. * Motion estimation context.
  38. */
  39. typedef struct MotionEstContext {
  40. AVCodecContext *avctx;
  41. int skip; ///< set if ME is skipped for the current MB
  42. int co_located_mv[4][2]; ///< mv from last P-frame for direct mode ME
  43. int direct_basis_mv[4][2];
  44. uint8_t *scratchpad; /**< data area for the ME algo, so that
  45. * the ME does not need to malloc/free. */
  46. uint8_t *best_mb;
  47. uint8_t *temp_mb[2];
  48. uint8_t *temp;
  49. int best_bits;
  50. uint32_t *map; ///< map to avoid duplicate evaluations
  51. uint32_t *score_map; ///< map to store the scores
  52. unsigned map_generation;
  53. int pre_penalty_factor;
  54. int penalty_factor; /**< an estimate of the bits required to
  55. * code a given mv value, e.g. (1,0) takes
  56. * more bits than (0,0). We have to
  57. * estimate whether any reduction in
  58. * residual is worth the extra bits. */
  59. int sub_penalty_factor;
  60. int mb_penalty_factor;
  61. int flags;
  62. int sub_flags;
  63. int mb_flags;
  64. int pre_pass; ///< = 1 for the pre pass
  65. int dia_size;
  66. int xmin;
  67. int xmax;
  68. int ymin;
  69. int ymax;
  70. int pred_x;
  71. int pred_y;
  72. uint8_t *src[4][4];
  73. uint8_t *ref[4][4];
  74. int stride;
  75. int uvstride;
  76. /* temp variables for picture complexity calculation */
  77. int64_t mc_mb_var_sum_temp;
  78. int64_t mb_var_sum_temp;
  79. int scene_change_score;
  80. op_pixels_func(*hpel_put)[4];
  81. op_pixels_func(*hpel_avg)[4];
  82. qpel_mc_func(*qpel_put)[16];
  83. qpel_mc_func(*qpel_avg)[16];
  84. uint8_t (*mv_penalty)[MAX_DMV * 2 + 1]; ///< bit amount needed to encode a MV
  85. uint8_t *current_mv_penalty;
  86. int (*sub_motion_search)(struct MpegEncContext *s,
  87. int *mx_ptr, int *my_ptr, int dmin,
  88. int src_index, int ref_index,
  89. int size, int h);
  90. } MotionEstContext;
  91. static inline int ff_h263_round_chroma(int x)
  92. {
  93. //FIXME static or not?
  94. static const uint8_t h263_chroma_roundtab[16] = {
  95. // 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
  96. 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 1, 1,
  97. };
  98. return h263_chroma_roundtab[x & 0xf] + (x >> 3);
  99. }
  100. int ff_init_me(struct MpegEncContext *s);
  101. void ff_estimate_p_frame_motion(struct MpegEncContext *s, int mb_x, int mb_y);
  102. void ff_estimate_b_frame_motion(struct MpegEncContext *s, int mb_x, int mb_y);
  103. int ff_pre_estimate_p_frame_motion(struct MpegEncContext *s,
  104. int mb_x, int mb_y);
  105. int ff_epzs_motion_search(struct MpegEncContext *s, int *mx_ptr, int *my_ptr,
  106. int P[10][2], int src_index, int ref_index,
  107. int16_t (*last_mv)[2], int ref_mv_scale, int size,
  108. int h);
  109. int ff_get_mb_score(struct MpegEncContext *s, int mx, int my, int src_index,
  110. int ref_index, int size, int h, int add_rate);
  111. int ff_get_best_fcode(struct MpegEncContext *s,
  112. int16_t (*mv_table)[2], int type);
  113. void ff_fix_long_p_mvs(struct MpegEncContext *s);
  114. void ff_fix_long_mvs(struct MpegEncContext *s, uint8_t *field_select_table,
  115. int field_select, int16_t (*mv_table)[2], int f_code,
  116. int type, int truncate);
  117. #endif /* AVCODEC_MOTIONEST_H */