我有一个原始视频文件,我在qt中制作了一个从该文件中逐帧读取的应用。在大原始文件中,当我按下转到下一帧的按钮时,延迟将近一秒钟。 这是我的代码,它从原始文件返回一个帧:
void RawVideoReader::getFrame(int offset)
{
std::cout<<"getFrame"<<std::endl;
file.seek((unsigned long long int)(((unsigned long long int)width * (unsigned long long int)height) * (unsigned long long int)offset));
QByteArray array = file.read(width * height);
const std::size_t count = array.size();
hex = std::unique_ptr<unsigned char>(new unsigned char[count]);
std::memcpy(hex.get(), array.constData(), count);
}
答案 0 :(得分:1)
您可以直接读入所需的缓冲区-问题是:为什么要使用unique_ptr
管理此内存缓冲区? QByteArray
已经完成了这项工作。此外,您可能希望保留相同的缓冲区,而不是一遍又一遍地重新分配它。
class RawVideoReader : ... {
QByteArray frame;
uint8_t *frameData() const { return frame.size() ? static_cast<uint8_t*>(frame.constData()) : nullptr; }
size_t frameSize() const { return static_cast<size_t>(frame.size()); }
...
};
bool RawVideoReader::getFrame(int frameNo) {
qDebug() << __FUNCTION__;
frame.resize(width * height * 1);
file.seek(qint64(frame.size()) * qint64(frameNo));
auto const hadRead = file.read(frame.data(), frame.size());
return hadRead == frame.size();
}