| 102 | } |
| 103 | |
| 104 | static int get_flags(MotionEstContext *c, int direct, int chroma){ |
| 105 | return ((c->avctx->flags&AV_CODEC_FLAG_QPEL) ? FLAG_QPEL : 0) |
| 106 | + (direct ? FLAG_DIRECT : 0) |
| 107 | + (chroma ? FLAG_CHROMA : 0); |
| 108 | } |
| 109 | |
| 110 | static av_always_inline int cmp_direct_inline(MPVEncContext *const s, const int x, const int y, const int subx, const int suby, |
| 111 | const int size, const int h, int ref_index, int src_index, |