Opened 14 years ago Closed 14 years ago #115 closed enhancement (fixed)Disable L1 search for RA
Description
I have used 0.9-hm branch r389, but it should apply to the most recent release as well. All changes are in TEncSearch::predInterSearch only.
1.Instead of:
#if GPB_SIMPLE_UNI
}
, to bypass the L1 search we need this:
#if GPB_SIMPLE_UNI
}
if (pcCU->getSlice()->getSPS()->getUseLDC() && m_pcEncCfg->getUseFastEnc() && pcCU->getSlice()->getNoBackPredFlag() )
, I have:
if (m_pcEncCfg->getUseFastEnc() && pcCU->getSlice()->getNoBackPredFlag() )
My understanding is that the results are slightly different now because the L1 MV is searched for in the bidirectional part of the ME, and not during the unidirectional one as before. Without fix we have:
L0 search -> L0 MV
L0 search -> L0 MV Attachments (1)Change History (5)Changed 14 years ago by nsprljancomment:1 Changed 14 years ago by fbossen
comment:2 Changed 13 years ago by davidf
Updating component after adding WD (Text) tickets comment:3 Changed 13 years ago by davidf
comment:4 Changed 13 years ago by davidf
Note: See
TracTickets for help on using
tickets. | This list contains all users that will be notified about changes made to this ticket. These roles will be notified: Reporter, Owner, Subscriber, Participant
|
Fixed in r421 and r425