OpenVisualCloud / SVT-HEVC

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
518 stars 170 forks source link

Whether or not, at most only *two* pictures can be referenced by a frame? #628

Closed wclapply closed 1 year ago

wclapply commented 1 year ago

I noticed that in this project, in the Set the Reference Object part, only one picture is placed in _REF_LIST0, so is _REF_LIST1, as the figure below shown.

image

But in x265, there are three lists which can include many pictures can be referenced, as you can see below:

image

My question is:

How to add a new referenced picture in addition to the existing two(_REF_LIST_0. REF_LIST1). Should I modify the macro _TOTAL_NUM_OF_REFLISTS, and modify all codes related about it?

Thanks!