Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 1442)

Ticket Resolution Summary Owner Reporter
#50 fixed Encoder crash when CUsize as 32 fbossen yyu@…
Description

As part of TE12, we are testing CUSize=32, MaxPartitionDepth =3. However, the encoder crashes at frame no. 218 for BasketballDrive 1080p at low delay high efficiency case.

#51 fixed Bug in edge based prediction for low complexity fbossen virginie.drugeon@…
Description

Edge based complexity is currently never used in the low complexity configuration.

The following bug fix solves the problem: In the file TComEdgeBased.cpp, the function TComEdgeBased::shift_right_round should be:

inline int TComEdgeBased::shift_right_round(int val, int b) {

if(b <= 0)

return val;

else

return (val + (1 << (b-1))) >> b;

}

#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

Note: See TracQuery for help on using queries.