Commit 24303555 authored by michael's avatar michael

The deblock filter does not need all the intra availabilit stuff so do

not recalculate it.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@14689 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5d53cbe7
......@@ -204,7 +204,6 @@ static void fill_caches(H264Context *h, int mb_type, int for_deblock){
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 @@ static void fill_caches(H264Context *h, int mb_type, int for_deblock){
}
}
}
}
/*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment