来自 NVENC 的 H.264 比特流中的非零 SPS 和 PPS id

发布于 2025-01-16 05:15:31 字数 232 浏览 1 评论 0原文

在什么情况下,NVENC 会为比特流选择非零 SPS 和 PPS id? 我有一个比特流应该只有一个 SPS 和一个 PPS,但它为 seq_parameter_set_id 和 pic_parameter_set_id 选择“2”。

编辑: 实际上,NV_ENC_CONFIG_H264 结构具有参数 spsId 和 ppsId,但在 v7.0(我暂时绑定)等旧版本中,这些值被保留并且必须设置为 0(我认为这意味着驱动程序决定) 。

In what cases will NVENC choose nonzero SPS and PPS ids for a bitstream?
I have a bitstream that should only have one SPS and one PPS and yet it's choosing '2' for both seq_parameter_set_id and pic_parameter_set_id.

EDIT:
Indeed the NV_ENC_CONFIG_H264 structure has parameters spsId and ppsId, but in older versions like v7.0 (which I'm bound to for the time being) these values are reserved and must be set to 0 (which I assume means that the driver decides).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅笑依然 2025-01-23 05:15:31

我猜这是正确设置 ENVIDIA 编码器的问题。
编码器有许多嵌套的配置结构。
我尝试

在 Video_Codec_SDK_11.0.10/include/nvEncodeAPI.h 中将spsId/ppsId 设置为“0”

typedef struct _NV_ENC_CONFIG_H264
{
[snip]
    uint32_t spsId; /**< [in]: Specifies the SPS id of the sequence header */
    uint32_t ppsId; /**< [in]: Specifies the PPS id of the picture header */
[snip]
} NV_ENC_CONFIG_H264;

I am guessing it is matter of correctly setting up the ENVIDIA encoder.
The encoder has a number of nested configuration structs.
I'd try to set spsId/ppsId to '0'

In Video_Codec_SDK_11.0.10/include/nvEncodeAPI.h

typedef struct _NV_ENC_CONFIG_H264
{
[snip]
    uint32_t spsId; /**< [in]: Specifies the SPS id of the sequence header */
    uint32_t ppsId; /**< [in]: Specifies the PPS id of the picture header */
[snip]
} NV_ENC_CONFIG_H264;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文