Fix for Ticket #407 DMVR with reference wraparound
1 unresolved thread
1 unresolved thread
- Add back support for reference wraparound with DMVR.
Merge request reports
Activity
1692 1692 height += (filtersize - 1); 1693 1693 cMv += Mv(-(((filtersize >> 1) - 1) << mvshiftTemp), 1694 1694 -(((filtersize >> 1) - 1) << mvshiftTemp)); 1695 clipMv(cMv, pu.lumaPos(), pu.lumaSize(), *pu.cs->sps); 1695 bool wrapRef = false; 1696 if( pu.cs->sps->getWrapAroundEnabledFlag() ) 1697 { 1698 wrapRef = wrapClipMv( cMv, pu.blocks[0].pos(), pu.blocks[0].size(), pu.cs->sps); 1699 } 1700 else { changed this line in version 2 of the diff
added 222 commits
-
fc4ea3e0...20c8d508 - 220 commits from branch
jvet:master
- 2d4b69a8 - Merge branch 'master' into fix_ticket_407
- f888db0d - Fix for Ticket #407 DMVR with reference wraparound
-
fc4ea3e0...20c8d508 - 220 commits from branch
mentioned in commit 2cf8fa6e
Please register or sign in to reply