Custom Query (1442 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (37 - 39 of 1442)

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Ticket Resolution Summary Owner Reporter
#49 fixed TMuC0.7 crashes when QuadtreeTULog2MinSize = 3 zhou@…
Description

the encoder crahes for all the configurations when 4x4 transform is disabled.

#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;

}

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
Note: See TracQuery for help on using queries.