- Feb 12, 2019
-
-
Frank Bossen authored
-
- Feb 11, 2019
-
-
Frank Bossen authored
Fix build See merge request !300
-
Frank Bossen authored
Started failing after merging !294
-
Frank Bossen authored
-
Frank Bossen authored
Proposed fix for ticket 164, including TU/CU get fixes of merge request 249 See merge request !292
-
Frank Bossen authored
Fix of the size of extendRefList. See merge request !296
-
Frank Bossen authored
remove deprecated IMV mode SPS parameter See merge request jvet/VVCSoftware_VTM!294
-
Frank Bossen authored
Clean-up of 2 parts in the ISP code that are redundant See merge request !297
-
Santiago de Luxán Hernández authored
Clean-up of 2 parts in the ISP code that are redundant. The changes do not alter the performance in any way, i.e., the results are exactly the same. 1) In the full RD intra mode tests loop (estIntraPredLumaQT) there is the following condition: if ( uiOrgMode <= DC_IDX ) -> do X; else-> do X. Since X is the same in both cases, the redundant code has been removed. 2) In xRecurIntraCodingLumaQT there is the threshold definition double threshold = nSubPartitions == 2 ? 0.95 : subTuCounter == 0 ? 0.67 : subTuCounter == 1 ? 0.83 : 0.91; Since subTuCounter can never be 0 (it is at least 1) at the time this expression is evaluated, the code has been simplified in the following way: double threshold = nSubPartitions == 2 ? 0.95 : subTuCounter == 1 ? 0.83 : 0.91;
-
Karsten Suehring authored
Remove reference to SPSNext to avoid compilation error See merge request !295
-
Santiago de Luxán Hernández authored
-
Frank Bossen authored
-
Karsten Suehring authored
Align ALF syntax element trace with specification See merge request !293
-
Karsten Suehring authored
AMVR (formely IMV) now has only one mode, which used to be mode #2 - remove SPS imv_mode parameter - remove encoder configuration for mode #1 (mode #2 replaces mode #1) - adapt config files to refer tp mode #1 - rename SPS syntax elements and access functions to AMVR Note: IMV to AMVR renaming in other parts of the software should be done by proponents.
-
Frederic Barbier authored
- Feb 10, 2019
-
-
Frank Bossen authored
Ticket 149 fix See merge request !291
-
Kiran Misra authored
Merge branch 'ChromaBoundaryStrengthBugfix164' of https://vcgit.hhi.fraunhofer.de/misrak/VVCSoftware_VTM into ChromaBoundaryStrengthBugfix164
-
Kiran Misra authored
-
- Feb 09, 2019
-
-
Frank Bossen authored
Fix for Ticket #152 See merge request !285
-
Brian Heng authored
- Sub-PU TMVP can generate an invalid inter candidate. - Simplify previous solution and eliminate duplicated code.
-
Kiran Misra authored
-
Yu Han authored
-
Yu Han authored
-
Frank Bossen authored
Fix for ticket #168: Interaction between M0140 (SBT) and M0297 (MTS Zero Out) See merge request !288
-
Frank Bossen authored
Fix of the DQP signaling with multiple TUs (Ticket #181) See merge request !280
-
Frank Bossen authored
When MC for luma only is desired, use existing luma/chroma parameters instead of encoder-specific field in data structure Also take care that luma only MC doesn't imply IBC
-
Frank Bossen authored
Fix for Ticket #150 See merge request !284
-
Frank Bossen authored
#179: fix of reshaper implementation (encoder-side RDcost) when lumaDQP is on for HDR See merge request jvet/VVCSoftware_VTM!269
-
Frank Bossen authored
Fix for Ticket #182 See merge request !289
-
Brian Heng authored
- Fix overflow during reconstruction process.
-
- Feb 08, 2019
-
-
Moonmo Koo authored
- The M0297 zero-out is also supported for SBT now. - The zero-out scanning code is moved out of residual_coding_subblock.
-
Frank Bossen authored
SPS cleanup - removal of deprecated SPSNext parameters See merge request !279
-
-
Frank Bossen authored
Fix for tickets #91 and #180 See merge request !275
-
-
Frank Bossen authored
Fix for ticket #179 Retrieval of QP value to use for chroma See merge request !271
-
Santiago de Luxán Hernández authored
Deleted the TU retrieval from the DQP code in xCompressCU and the TU pointer being equal to nullptr check.
-
Taoran Lu authored
-