mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-02-17 12:27:18 +00:00
Restructure check_mv()
~20 cpu cycles faster loopfilter Originally committed as revision 21505 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fabd704b37
commit
2cf0d46d4c
@ -439,14 +439,13 @@ static int check_mv(H264Context *h, long b_idx, long bn_idx, int mvy_limit){
|
|||||||
|
|
||||||
if(v){
|
if(v){
|
||||||
if(h->ref_cache[0][b_idx] != h->ref_cache[1][bn_idx] |
|
if(h->ref_cache[0][b_idx] != h->ref_cache[1][bn_idx] |
|
||||||
|
h->ref_cache[1][b_idx] != h->ref_cache[0][bn_idx])
|
||||||
|
return 1;
|
||||||
|
return
|
||||||
h->mv_cache[0][b_idx][0] - h->mv_cache[1][bn_idx][0] + 3 >= 7U |
|
h->mv_cache[0][b_idx][0] - h->mv_cache[1][bn_idx][0] + 3 >= 7U |
|
||||||
FFABS( h->mv_cache[0][b_idx][1] - h->mv_cache[1][bn_idx][1] ) >= mvy_limit)
|
FFABS( h->mv_cache[0][b_idx][1] - h->mv_cache[1][bn_idx][1] ) >= mvy_limit |
|
||||||
return 1;
|
|
||||||
if(h->ref_cache[1][b_idx] != h->ref_cache[0][bn_idx] |
|
|
||||||
h->mv_cache[1][b_idx][0] - h->mv_cache[0][bn_idx][0] + 3 >= 7U |
|
h->mv_cache[1][b_idx][0] - h->mv_cache[0][bn_idx][0] + 3 >= 7U |
|
||||||
FFABS( h->mv_cache[1][b_idx][1] - h->mv_cache[0][bn_idx][1] ) >= mvy_limit)
|
FFABS( h->mv_cache[1][b_idx][1] - h->mv_cache[0][bn_idx][1] ) >= mvy_limit;
|
||||||
return 1;
|
|
||||||
return 0;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user