mirror of
https://github.com/xenia-project/FFmpeg.git
synced 2024-11-28 22:10:34 +00:00
H264: fix prefetch
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
dc172ecc6e
commit
436c4523ed
@ -639,7 +639,7 @@ static inline void prefetch_motion(H264Context *h, int list){
|
||||
uint8_t **src= h->ref_list[list][refn].data;
|
||||
int off= mx*h->pixel_size + (my + (s->mb_x&3)*4)*h->mb_linesize + 64*h->pixel_size;
|
||||
s->dsp.prefetch(src[0]+off, s->linesize, 4);
|
||||
off= (mx>>1)*h->pixel_size + ((my>>1)*h->pixel_size + (s->mb_x&7))*s->uvlinesize + 64*h->pixel_size;
|
||||
off= (mx>>1)*h->pixel_size + ((my>>1) + (s->mb_x&7))*s->uvlinesize + 64*h->pixel_size;
|
||||
s->dsp.prefetch(src[1]+off, src[2]-src[1], 2);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user