The source-filter tag has no wiki summary.
0
votes
0answers
218 views
Call to function in custom interface, in windows source filter does not seem to work
I am using a modified version of Vivek's vcam source filter. I get the reference to the custom filter as below and it works fine.
hr = CoCreateInstance(CLSID_VirtualCam, ...
1
vote
1answer
186 views
DShow source filter: which instance of filter am I?
I have a custom source filter, made by implementing CSource and CSourceStream from the dshow baseclasses. It is exported multiple times using the IFilterMapper2::RegisterFilter method, under different ...
3
votes
1answer
114 views
Using Filter::Util::Call to access the remainder of the calling source line in Perl
The following is a basic source filter that simply inserts a new line into the Perl source code at the point where it is use'd and then removes itself:
use warnings;
use strict;
use 5.010;
{package ...
14
votes
3answers
380 views
What exactly is a source filter?
Whenever I see the term source filter I am left wondering as to what it refers to.
Aside from a formal definition, I think an example would also be helpful to drive the message home.
1
vote
1answer
580 views
Free DirectShow live stream source filter
I have a DirectShow graph, contains file source filter, splitter filter, decoders for video and audio and renderers. (The data is possibly encrypted, so the splitter just split it to video and audion ...
18
votes
6answers
1k views
Why are Perl source filters bad and when is it OK to use them?
It is "common knowledge" that source filters are bad and should not be used in production code.
When answering a a similar, but more specific question I couldn't find any good references that explain ...
5
votes
5answers
287 views
What concerns should I have if I use Smart::Comments in development code?
I understand that Smart::Comments should not be used in production code, since it is a source filter.
However, I have been using Smart::Comments in my development code and then commenting out the ...
10
votes
8answers
743 views
Is there a Perl solution for lazy lists this side of Perl 6?
Has anybody found a good solution for lazily-evaluated lists in Perl? I've tried a number of ways to turn something like
for my $item ( map { ... } @list ) {
}
into a lazy evaluation--by tie-ing ...