[FFmpeg-cvslog] r21503 - trunk/libavcodec/h264_loopfilter.c
michael
subversion
Thu Jan 28 11:34:06 CET 2010
Author: michael
Date: Thu Jan 28 11:34:06 2010
New Revision: 21503
Log:
Unroll loops in check_mv()
~6% faster (slow path) loopfilter (should be ~2% overall)
Modified:
trunk/libavcodec/h264_loopfilter.c
Modified: trunk/libavcodec/h264_loopfilter.c
==============================================================================
--- trunk/libavcodec/h264_loopfilter.c Thu Jan 28 11:10:02 2010 (r21502)
+++ trunk/libavcodec/h264_loopfilter.c Thu Jan 28 11:34:06 2010 (r21503)
@@ -425,23 +425,26 @@ void ff_h264_filter_mb_fast( H264Context
}
static int check_mv(H264Context *h, long b_idx, long bn_idx, int mvy_limit){
- int l;
- int v = 0;
+ int v;
- for( l = 0; !v && l < h->list_count; l++ ) {
- v |= h->ref_cache[l][b_idx] != h->ref_cache[l][bn_idx] |
- h->mv_cache[l][b_idx][0] - h->mv_cache[l][bn_idx][0] + 3 >= 7U |
- FFABS( h->mv_cache[l][b_idx][1] - h->mv_cache[l][bn_idx][1] ) >= mvy_limit;
- }
+ v = h->ref_cache[0][b_idx] != h->ref_cache[0][bn_idx] |
+ h->mv_cache[0][b_idx][0] - h->mv_cache[0][bn_idx][0] + 3 >= 7U |
+ FFABS( h->mv_cache[0][b_idx][1] - h->mv_cache[0][bn_idx][1] ) >= mvy_limit;
+ if(h->list_count==2 && !v)
+ v = h->ref_cache[1][b_idx] != h->ref_cache[1][bn_idx] |
+ h->mv_cache[1][b_idx][0] - h->mv_cache[1][bn_idx][0] + 3 >= 7U |
+ FFABS( h->mv_cache[1][b_idx][1] - h->mv_cache[1][bn_idx][1] ) >= mvy_limit;
if(h->list_count==2 && v){
- v=0;
- for( l = 0; !v && l < 2; l++ ) {
- int ln= 1-l;
- v |= h->ref_cache[l][b_idx] != h->ref_cache[ln][bn_idx] |
- h->mv_cache[l][b_idx][0] - h->mv_cache[ln][bn_idx][0] + 3 >= 7U |
- FFABS( h->mv_cache[l][b_idx][1] - h->mv_cache[ln][bn_idx][1] ) >= mvy_limit;
- }
+ if(h->ref_cache[0][b_idx] != h->ref_cache[1][bn_idx] |
+ 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)
+ 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 |
+ FFABS( h->mv_cache[1][b_idx][1] - h->mv_cache[0][bn_idx][1] ) >= mvy_limit)
+ return 1;
+ return 0;
}
return v;
More information about the ffmpeg-cvslog
mailing list