使用 libde265 解码的 hevc 文件的 YUV 格式是什么
What is the YUV format of the decoded hevc file with using libde265
我正在使用 libde265(www.libde265.org) 在 c++ 项目中解码我的 hevc 文件,并尝试将解码后的 YUV 保存为图片。但是我在 C++ 项目中找到 Y、U、V 值的地址时遇到了问题。
有谁知道,当我们使用 libde265 解码 hevc 文件时,我们得到哪种格式的 YUV? YUV420、YUV420P、YUV420SP等?
非常感谢!
伊万
我已经尝试了很多东西 :-) 我认为那是 YUV420P 并且有 3 个平面。
使用方法
const uint8_t* de265_get_image_plane(const struct de265_image*, int channel, int* out_stride);
我们可以从通道 1 获取 Y,从通道 2 和 3 获取 u,v。
我正在使用 libde265(www.libde265.org) 在 c++ 项目中解码我的 hevc 文件,并尝试将解码后的 YUV 保存为图片。但是我在 C++ 项目中找到 Y、U、V 值的地址时遇到了问题。 有谁知道,当我们使用 libde265 解码 hevc 文件时,我们得到哪种格式的 YUV? YUV420、YUV420P、YUV420SP等?
非常感谢! 伊万
我已经尝试了很多东西 :-) 我认为那是 YUV420P 并且有 3 个平面。 使用方法
const uint8_t* de265_get_image_plane(const struct de265_image*, int channel, int* out_stride);
我们可以从通道 1 获取 Y,从通道 2 和 3 获取 u,v。