| 583 | } |
| 584 | |
| 585 | static inline void init_mv4_ref(MotionEstContext *c){ |
| 586 | const int stride= c->stride; |
| 587 | |
| 588 | c->ref[1][0] = c->ref[0][0] + 8; |
| 589 | c->ref[2][0] = c->ref[0][0] + 8*stride; |
| 590 | c->ref[3][0] = c->ref[2][0] + 8; |
| 591 | c->src[1][0] = c->src[0][0] + 8; |
| 592 | c->src[2][0] = c->src[0][0] + 8*stride; |
| 593 | c->src[3][0] = c->src[2][0] + 8; |
| 594 | } |
| 595 | |
| 596 | static inline int h263_mv4_search(MpegEncContext *s, int mx, int my, int shift) |
| 597 | { |
no outgoing calls
no test coverage detected