gpt4 book ai didi

c++ - 自定义 AVIOContext 的未定义 AVFormatContext 持续时间

转载 作者:行者123 更新时间:2023-12-04 23:14:53 26 4
gpt4 key购买 nike

问题是为什么字段 AVFormatContext::duration 在之后未定义

avformat_open_input
avformat_find_stream_info

如果在 here 中使用自定义 AVIOContext或 here .

通过简单的文件打开,该字段被设置。 Example

最佳答案

问题是我没有定义搜索函数,所以对于 std::istream 示例,这应该是

static int64_t seekFunction(void* opaque, int64_t offset, int whence)
{

auto& stream = *reinterpret_cast<std::istream*>(opaque);

if(whence == AVSEEK_SIZE)
{
size_t position = stream.tellg();

stream.seekg(0, std::ios::beg);
size_t begin = stream.tellg();

stream.seekg(0, std::ios::end);
size_t end = stream.tellg();

stream.seekg(position, std::ios::beg);

return end - begin;
}

stream.seekg(offset, std::ios::beg);

return stream.tellg();

}

如果是 eof,您还应该在 readFunction 中为流添加 clear for clear

关于c++ - 自定义 AVIOContext 的未定义 AVFormatContext 持续时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48626433/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com