mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
Edge emulation should be used in B-frame MC in mspel mode with
mv_x < 1 or mv_y < 1. Originally committed as revision 19255 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1a40491ef2
commit
74a30595b2
@ -860,8 +860,8 @@ static void vc1_interp_mc(VC1Context *v)
|
||||
}
|
||||
|
||||
if(v->rangeredfrm
|
||||
|| (unsigned)src_x > s->h_edge_pos - (mx&3) - 16 - s->mspel*3
|
||||
|| (unsigned)src_y > s->v_edge_pos - (my&3) - 16 - s->mspel*3){
|
||||
|| (unsigned)(src_x - s->mspel) > s->h_edge_pos - (mx&3) - 16 - s->mspel*3
|
||||
|| (unsigned)(src_y - s->mspel) > s->v_edge_pos - (my&3) - 16 - s->mspel*3){
|
||||
uint8_t *uvbuf= s->edge_emu_buffer + 19 * s->linesize;
|
||||
|
||||
srcY -= s->mspel * (1 + s->linesize);
|
||||
|
Loading…
Reference in New Issue
Block a user