Optimize (amvd>2)+(amvd>32), about 1 cpu cycles faster.
patch by Zhou Zongyi @ zhouzy () os punkt pku dot edu speck cn Originally committed as revision 22084 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
4e06acbde4
commit
821fe7f3e6
@ -912,7 +912,8 @@ static int decode_cabac_mb_ref( H264Context *h, int list, int n ) {
|
|||||||
static int decode_cabac_mb_mvd( H264Context *h, int ctxbase, int amvd, int *mvda) {
|
static int decode_cabac_mb_mvd( H264Context *h, int ctxbase, int amvd, int *mvda) {
|
||||||
int mvd;
|
int mvd;
|
||||||
|
|
||||||
if(!get_cabac(&h->cabac, &h->cabac_state[ctxbase+(amvd>2)+(amvd>32)])){
|
if(!get_cabac(&h->cabac, &h->cabac_state[ctxbase+((amvd-3)>>(INT_BIT-1))+((amvd-33)>>(INT_BIT-1))+2])){
|
||||||
|
// if(!get_cabac(&h->cabac, &h->cabac_state[ctxbase+(amvd>2)+(amvd>32)])){
|
||||||
*mvda= 0;
|
*mvda= 0;
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user