媒体基金会。使用自定义 IMFMediaSource 对位图视频进行编码
谁能澄清以下问题?一个像样的源代码片段或示例会很棒,到目前为止我发现的唯一相关示例是 SDK 中的 WavSource。
原始位图数据如何呈现给编码器?是 (A)RGB 32BPP 或类似的吗?
根据 WavSource 示例,在输入流上调用 RequestSample(),这会返回数据、播放时间和持续时间。那么我会返回一个播放时间和持续时间为 1 秒的格式适当的缓冲区?
谢谢。
Can anyone clarify the following questions? A decent source code snippet or example would be wonderful, the only relevant example I've found so far is WavSource in the SDK.
How is the raw bitmap data presented to the encoder? Is it (A)RGB 32BPP or similar?
On the basis of the WavSource sample something calls RequestSample() on the input stream, this returns data, play time and duration. So I'd be returning a suitably formatted buffer with a playtime and a duration of 1s?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看一下这个链接,了解如何编写自定义媒体源:
http://msdn.microsoft .com/en-us/library/windows/desktop/ms700134(v=vs.85).aspx
基本上原始位图在示例中进行编码。您可以简单地为 32 BPP 分配大小为 4*行*高的样本并传递原始缓冲区。
您可以执行以下操作:
对于编码视频示例,请查看: http://msdn.microsoft.com/en-us/library/windows/desktop/ee663604(v=vs.85).aspx
Take a look at this link on how to write a Custom Media Source:
http://msdn.microsoft.com/en-us/library/windows/desktop/ms700134(v=vs.85).aspx
Basically raw bitmap is encoded in the sample. You can simply allocate a sample of size 4*row*height for 32 BPP and pass the raw buffer.
You can do this:
For encoding video samples, take a look at: http://msdn.microsoft.com/en-us/library/windows/desktop/ee663604(v=vs.85).aspx