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
#1381 fixed Useless Assert in TComRdCost karlsharman LucTrudeau
Description

In the method TComRdCost::xGetComponentBits, it would seem to me that it is impossible for the value of uiTemp to be zero.

I think the "assert ( uiTemp );" is useless.

#1085 invalid Insufficient bits for the result of luma quarter pel interpolation in HM code. ManojJames
Description

The data type of the interpolated pixels in Short *dst is insufficient for a implementation of the filter conforming to JCTVC-L1003_v34 'short' can be 16 bits depending upon the platform and compiler used.

template<Int N, Bool isVertical, Bool isFirst, Bool isLast> Void TComInterpolationFilter::filter(Int bitDepth, Short const *src, Int srcStride, Short *dst, Int dstStride, Int width, Int height, Short const *coeff)

Examples of case when 16 bits is insufficient is the quarter-sample location 'j' (8-209). The maximum and minimum interpolated values of quarter-sample location 'j' depends on the range of 'b' (8-200).

Assume eight bit input. In equation (8-200) The maximum of 'b' occurs when A(−3,0) = 0, A(−2,0) = 255, A(−1,0) = 0, A(0,0) = 255, A(1,0) = 255, A(2,0) =0, A(3,0) = 255, A(4,0) = 0. The maximum of 'b' is 88*255. The minimum of 'b' occurs when A(−3,0) = 255, A(−2,0) = 0, A(−1,0) = 255, A(0,0) = 0, A(1,0) = 0, A(2,0) =255, A(3,0) = 0, A(4,0) = 255. The minimum of 'b' is -24*255.

For quarter-sample location 'j', in equation (8-209) The maximum of 'j' occurs when b(0,-3) = -24*255, b(0,−2) = 88*255, b(0,−1) = -24*255, b(0,0) = 88*255, b(0,1) = 88*255, b(0,2) = -24*255, b(0,3) = 88*255, b(0,4) = -24*255. The maximum of 'j' is 33150 The minimum of 'j' occurs when b(0,-3) = 88*255, b(0,−2) = -24*255, b(0,−1) = 88*255, b(0,0) = -24*255, b(0,1) = -24*255, b(0,2) = 88*255, b(0,3) = -24*255, b(0,4) = 88*255. The minimum value is -16830.

The maximum of 'j' is greater than 32767(the maximum that can be represented by 16 bits). The current implementation of the filter does not confrom to the JCTVC-L1003_v34 draft of the standard when bi-prediction is used.

#1066 invalid How to define tiles with wavefront Moshe_M
Description

hello,

I am learning about the parallel capabilities of HEVC, and i would like to know how to use tiles and wavefront. i want to to reduce hevc H.M-9.2 complexity using the parallel capabillities. what should i define in the cfg file to achieve that? i am coding only 1 frame, therefor i am using only intra prediction. is there also another ways to reduce HEVC complexity ?

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.