Changes between Initial Version and Version 1 of Ticket #238
- Timestamp:
- 30 Apr 2019, 11:23:18 (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #238 – Description
initial v1 1 1 The following code will cause the deblocking process to stop if a CU is not aligned with the 8x8 filtering grid. However, internal transform boundaries can still fall on the 8x8 filtering grid even if the CU does not. So, I believe the following lines should be deleted. 2 2 3 3 {{{ 4 4 void LoopFilter::xDeblockCU( CodingUnit& cu, const DeblockEdgeDir edgeDir ) 5 5 { … … 19 19 ... 20 20 } 21 }}}