# HG changeset patch # User michael # Date 1218424082 0 # Node ID 4891fe700813207a461a4c04aa4bd779ab2c8694 # Parent e61de3e409eb867800be2dcf954219144f141fcc The deblock filter does not need all the intra availability stuff so do not recalculate it. diff -r e61de3e409eb -r 4891fe700813 h264.c --- a/h264.c Mon Aug 11 02:52:14 2008 +0000 +++ b/h264.c Mon Aug 11 03:08:02 2008 +0000 @@ -204,7 +204,6 @@ topright_type= h->slice_table[topright_xy] == h->slice_num ? s->current_picture.mb_type[topright_xy]: 0; left_type[0] = h->slice_table[left_xy[0] ] == h->slice_num ? s->current_picture.mb_type[left_xy[0]] : 0; left_type[1] = h->slice_table[left_xy[1] ] == h->slice_num ? s->current_picture.mb_type[left_xy[1]] : 0; - } if(IS_INTRA(mb_type)){ int type_mask= h->pps.constrained_intra_pred ? IS_INTRA(-1) : -1; @@ -285,6 +284,7 @@ } } } + } /*