- Jul 22, 2019
-
-
Christian Helmrich authored
-
- Jul 16, 2019
- Jul 15, 2019
-
-
Frank Bossen authored
-
- Jun 20, 2019
-
-
Karsten Suehring authored
JVET-N0805: APS for LMCS (using different APS types) See merge request !577
-
- May 09, 2019
-
-
Frederic Barbier authored
-
- May 03, 2019
-
-
Moonmo Koo authored
- The indexing of cost array was corrected by following shuffling pattern of full-RD candidate list employed by MIP. - ~0.1% coding gain inc. along with ~4% encoding time dec. in AI
-
Xiang Li authored
This reverts merge request !532
-
Moonmo Koo authored
-
Moonmo Koo authored
- The indexing of cost array was corrected by following shuffling pattern of full-RD candidate list employed by MIP. - ~0.1% coding gain inc. along with ~4% encoding time dec. in AI
-
Philipp Merkle authored
-
- Apr 29, 2019
-
-
Karsten Suehring authored
-
Karsten Suehring authored
-
- Apr 27, 2019
-
-
Frank Bossen authored
-
- Apr 26, 2019
-
-
- Previous name: Reduced Secondary Transform (RST) - The parameter, LFNST, should be added in cfg file for enabing LFNST, i.e. LFNST = 1
-
- Apr 25, 2019
-
-
Muhammed Coban authored
-
Muhammed Coban authored
-
- Apr 24, 2019
-
-
Muhammed Coban authored
-
- Apr 23, 2019
-
-
Philipp Merkle authored
Changed condition for "fast" RA in reduceHadCandList() and renamed variables using camelCase notation
-
Philipp Merkle authored
-
- Apr 18, 2019
-
-
Luong Pham Van authored
-
- Apr 17, 2019
-
-
Muhammed Coban authored
-
- Apr 16, 2019
- Apr 10, 2019
-
-
Santiago de Luxán Hernández authored
Cosmetic change: Fixed a typo in the name of a variable: "ispIsCurrentWinnder" was replaced with "ispIsCurrentWinner".
-
Santiago de Luxán Hernández authored
-
- Apr 08, 2019
-
-
- Apr 07, 2019
-
-
Alexey Filippov authored
-
- Apr 03, 2019
-
-
Xiaoyu Xiu authored
-
Jani Lainema authored
-
- Apr 02, 2019
- Apr 01, 2019
-
-
Karsten Suehring authored
-
- Mar 04, 2019
-
-
Karsten Suehring authored
keep max TU in #define for possibility of keeping the parameter TU max/min size are constants in the VVC draft. Reflecting this in the software.
-
-
- Feb 26, 2019
-
-
Frederic Barbier authored
-
- Feb 15, 2019
-
-
Santiago de Luxán Hernández authored
Speed-Up for ISP when JVET_M0464_UNI_MTS is enabled. It can be enabled/disabled with the config. file parameter ISPFast. When enabled, -it merges all full RD intra mode lists into one, -it tests fewer non-DCT-II transforms if ISP is likely to become the best mode and -it stops testing intra modes for an ISP split if all sub-partitions obtained a zero-cbf. Results in CTC: AI -> 0.04% loss, EncT = 97%, DecT = 100% RA -> 0.01% loss, EncT = 99%, DecT = 100%
-
- Feb 12, 2019
-
-
Taoran Lu authored
-
- Feb 11, 2019
-
-
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;
-
Santiago de Luxán Hernández authored
-