Custom query (1557 matches)

Filters
 
or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 1557)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#984 fixed Typo in writing Deblocking Cb, Cr Beta and Tc offsets in PictureHeader AnandMeher
Description

The following lines of code in function codePictureHeader have a typo.

WRITE_SVLC( picHeader->getDeblockingFilterBetaOffsetDiv2(), "ph_cb_beta_offset_div2" ); WRITE_SVLC( picHeader->getDeblockingFilterTcOffsetDiv2(), "ph_cb_tc_offset_div2" ); WRITE_SVLC( picHeader->getDeblockingFilterBetaOffsetDiv2(), "ph_cr_beta_offset_div2" ); WRITE_SVLC( picHeader->getDeblockingFilterTcOffsetDiv2(), "ph_cr_tc_offset_div2" );

They should instead use Cb and Cr get functions as follows:

WRITE_SVLC(picHeader->getDeblockingFilterCbBetaOffsetDiv2(), "ph_cb_beta_offset_div2"); WRITE_SVLC(picHeader->getDeblockingFilterCbTcOffsetDiv2(), "ph_cb_tc_offset_div2"); WRITE_SVLC(picHeader->getDeblockingFilterCrBetaOffsetDiv2(), "ph_cr_beta_offset_div2"); WRITE_SVLC(picHeader->getDeblockingFilterCrTcOffsetDiv2(), "ph_cr_tc_offset_div2");

#19 fixed Define JVET_C0024_QTBT off cause crash XiangLi Chernyak
Description

JVET_C0024_QTBT switched off with corresponded configurations cause encoder's crash. It works normally if JVET_C0055_INTRA_MPM is also switched off.

#24 fixed Define JVET_C0024_QTBT off cause compile error Chernyak
Description

JVET_C0024_ZERO_OUT_TH is not defined when JVET_C0046_ZO_ASSERT is on while QTBT macro is off.

1 2 3 4 5 6 7 8 9 10 11 12
Note: See TracQuery for help on using queries.