如何写一个read avi file的source filter
我的avi file是要由我的activex给的,请问我该怎么做?
[解决办法]
1.如果你的source filter不需要做demux,很简单,只是读file就可以了,然后把数据送到后面的avi demux
2.如果你的source filter要做demux,需要你熟悉AVI spec,参考code见ffmpeg中avidec.c
发布时间: 2012-03-02 14:40:29 作者: rapoo
如何写一个read avi file的source filter
我的avi file是要由我的activex给的,请问我该怎么做?
[解决办法]
1.如果你的source filter不需要做demux,很简单,只是读file就可以了,然后把数据送到后面的avi demux
2.如果你的source filter要做demux,需要你熟悉AVI spec,参考code见ffmpeg中avidec.c