I'm working on a solution that will be used to receive video stream from remote hosts and to put various texts on the top of it. Currently it consists of custom DirectShow push filter (C++) which receives data from remote hosts using RTP protocol and tiny C# application that sets up the DirectShow graph and is used as a container for the video. I'm using DirectShowLib interop library. However, I'm not sure how to pass parameters from this C# app to my custom filter. What are possible ways to do it?
相关问题
- Filter Datagridview rows using TextBox
- Filter rows which has at least one of particular v
- Filter Today's Date in MDX
- ActiveAdmin: Filter by count of child objects
- How to remove empty factors from xaxis
相关文章
- Using safe filter in Django for rich text fields
- How to add negative filter in network tab of Chrom
- how to find/filter the array element with the smal
- .filter is not a function [duplicate]
- Remove first element of a Stream in Java 8
- VBA Autofilter exclude multiple criteria
- Change phase of a signal in frequency domain (MatL
- Django object filter - price behaving strangely, e
Creating the key:
HKEY_CLASS_ROOT
is not enough on Windows 7. There are two issues with that:
The correct version looks like that:
HKEY_CLASS_ROOT
Moreover, you can check HKEY_CLASS_ROOT->MMS for reference.
the simplest way is to register your own protocol (create a key myproto under HKCR, and then create a value "Source Filter" containing your clsid under that). Then you can render "myproto://ip=192.168.0.1&port=12¶m1=x" and these are passed to your IFileSourceFilter::Load method.
G