Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一些计算机硬件架构探索,我渴望在我的原型上测试不同的任务。所以我需要一些代码来模拟视频编码和/或解码的任务(H264 是完美的,但其他编解码器也可以)。
有什么我可以使用的吗?它不必完全是编码/解码,只需一些代码可以粗略地估计具有相同计算的相同工作负载,这样我就可以获得一些性能/功耗结果。
哦,是的,它必须在“纯 C”中,并且不使用任何复杂的库(math.h 很好),因为我必须将它放到硬件模块上。
提前致谢
看看libavcodec。它是纯 C。