Hi,
I need to record some original interleaved (line-by-line) 3D video with HEVC in 4Kp30.
It seems that unlike H.264 there is no really any supported interleaved formats, and in NvEncodeAPI.h the struct NV_ENC_STEREO_PACKING_MODE seems only to be used for NV_ENC_CONFIG_H264, not for NV_ENC_CONFIG_HEVC. Is there anything similar in HEVC?
As wordaround (for now) I just rearrange the interleaved video to be top-bottom, so the 4:2:0 format doesn’t mix vertically adjacent left and right lines of the image during subsampling.
The request is to generate additionally a 2D recording from the recorded top-bottom 3D HEVC video. The idea is now to extract from the already encoded HEVC bitstream somehow the upper region, which could then be reused for the 2D recording, without having to re-encode the video (to avoid quality loss and extra encoding utilization).
From what I understand of the HEVC bitstream format, on the top-level the picture will be broken up into slices and/or tiles, each of them consist of the coding tree units which are like 32x32 macroblocks.
- I read on a forum post, that HEVC tiles are not supported by NVEnc hardware, is that correct?
- I heard the CTU is fixed to 32x32. I am using an Ampere GPU (A4000) and am not sure if that limitation is CTU max size is 32x32 (instead 64x64 like in HEVC spec) or if it means as well that any CTU size, so e.g. minSize is as well 32x32. Can I mix 32x32 CTUs with 8x8 CTUs?
- I’m thinking to use slices, for the top and bottom half of the image. I would use sliceMode=3 (numSlices in Picture) and specify 2 slices (or use slice mode 2 and specify the # of CTU rows). From what I understand those 2 slices for top and bottom half are then totally independent (no prediction or motion vector going across top half to bottom half) so that they can be totally independently processed and used. Is that supported by the Nvidia NVEnv HW for HEVC on Ampere?
- How to handle heights not divisible by 32? The 3D video is 3840x2160, so top and bottom are each 1080px height. That is not divisible by 32px (if that really is only fixed CTU supported), so I would need to pad each half to 1088px. To not get a space in the middle, the top half would probably want to pad 8px at the top, and the bottom half 8px at the bottom. How can we signal to the player to “ignore” those padding lines? Are there any metadata or settings? For 4K with a single full-picture slice I see that it is encoded as 3840x2176, so padded by 16px, but I assume that all the padding is on the bottom there, and not 8px on the top and 8px on the bottom.
Any help would greatly be appreciated
Thanks