Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (4 - 6 of 1442)

1 2 3 4 5 6 7 8 9 10 11 12
Ticket Resolution Summary Owner Reporter
#52 fixed xGetICost Undefined in tcomtrquant.cpp TLibCommon fbossen anonymous
Description

For tag 0.7.1

when turn off: HHI_TRANSFORM_CODING, QC_MDDT, ROT, RDOQ

Symbolmodel = 1;

The following error promoted: Error 14 error C3861: 'xGetICost': identifier not found ..\tags\0.7.1\source\lib\tlibcommon\tcomtrquant.cpp 2660 TLibCommon

Error 15 error C3861: 'xGetICost': identifier not found ..\tags\0.7.1\source\lib\tlibcommon\tcomtrquant.cpp 2669 TLibCommon

#1291 fixed xCopyContextsFrom should also copy Go-Rice statistics karlsharman
Description

TDecSbac::xCopyContextsFrom should also copy the Golomb-Rice adaptation statistics. Patch - move memcpy from xCopyFrom into xCopyContextsFrom.

#890 fixed wrong value of log2TrafoSize in transform unit syntax 7.3.8.10 bbross PhuongNguyen
Description

In the current text, log2TrafoSize is used for the third argument when residual_coding for chroma is called in the following code :

if( log2TrafoSize > 2 ) {

if( cbf_cb[ x0 ][ y0 ][ trafoDepth ] )

residual_coding( x0, y0, log2TrafoSize, 1 )

if( cbf_cr[ x0 ][ y0 ][ trafoDepth ] )

residual_coding( x0, y0, log2TrafoSize, 2 )

}

Since the spec defines only the format 4:2:0 for the moment, the size of chroma transform block is half of that of luma. So the spec should be changed to :

if( log2TrafoSize > 2 ) {

if( cbf_cb[ x0 ][ y0 ][ trafoDepth ] )

residual_coding( x0, y0, log2TrafoSize - 1, 1 )

if( cbf_cr[ x0 ][ y0 ][ trafoDepth ] )

residual_coding( x0, y0, log2TrafoSize - 1, 2 )

}

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