如何使用x264 API将图片编码为H264?
我按照链接 如何对图片进行编码是否可以使用 x264 C API 将一系列图像编码为 H264?,但每次 x264_encoder_encode(encoder, &nals, &i_nals、&pic_in、&pic_out) 返回 0。
I encode a picture following the link How does one encode a series of images into H264 using the x264 C API?, but every time x264_encoder_encode(encoder, &nals, &i_nals, &pic_in, &pic_out) returns 0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
x264_encoder_delayed_frames
返回什么?根据 KillianDS 的编辑底部,如果存在延迟帧,x264_encoder_encode
可能会返回0。What does
x264_encoder_delayed_frames
return? According to KillianDS's edit at the bottom,x264_encoder_encode
may return 0 if there are delayed frames.