SVT HEVC encoder. Scalable Video Technology (SVT) is a software-based video coding technology that is highly optimized for Intel® Xeon® processors. Using the open source SVT-HEVC encoder, it is possible to spread video encoding processing across multiple Intel® Xeon® processors to achieve a real advantage of processing efficiency.
Other
519
stars
169
forks
source link
Fix reading overflow when estimating bits for SAO offset values in 10bit #407
In 10bit coding, the offset value can be larger than 7. The range is defined as follows in file
EbSampleAdaptiveOffsetGenerationDecisioin.c
.When the offset value is larger than the array size of
saoOffsetTrunUnaryBits
, reading overflow would happen.This commit forces a maxminum value of 7.