Commit 204d1540 authored by michael's avatar michael

Optimize *_type init, 1.5 cpu cycles faster.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@22192 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 8819c29c
...@@ -824,10 +824,18 @@ static void fill_decode_neighbors(H264Context *h, int mb_type){ ...@@ -824,10 +824,18 @@ static void fill_decode_neighbors(H264Context *h, int mb_type){
h->left_type[0] = s->current_picture.mb_type[left_xy[0]] ; h->left_type[0] = s->current_picture.mb_type[left_xy[0]] ;
h->left_type[1] = s->current_picture.mb_type[left_xy[1]] ; h->left_type[1] = s->current_picture.mb_type[left_xy[1]] ;
if(FMO){
if(h->slice_table[topleft_xy ] != h->slice_num) h->topleft_type = 0; if(h->slice_table[topleft_xy ] != h->slice_num) h->topleft_type = 0;
if(h->slice_table[top_xy ] != h->slice_num) h->top_type = 0; if(h->slice_table[top_xy ] != h->slice_num) h->top_type = 0;
if(h->slice_table[topright_xy] != h->slice_num) h->topright_type= 0;
if(h->slice_table[left_xy[0] ] != h->slice_num) h->left_type[0] = h->left_type[1] = 0; if(h->slice_table[left_xy[0] ] != h->slice_num) h->left_type[0] = h->left_type[1] = 0;
}else{
if(h->slice_table[topleft_xy ] != h->slice_num){
h->topleft_type = 0;
if(h->slice_table[top_xy ] != h->slice_num) h->top_type = 0;
if(h->slice_table[left_xy[0] ] != h->slice_num) h->left_type[0] = h->left_type[1] = 0;
}
}
if(h->slice_table[topright_xy] != h->slice_num) h->topright_type= 0;
} }
static void fill_decode_caches(H264Context *h, int mb_type){ static void fill_decode_caches(H264Context *h, int mb_type){
......
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