Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

17
votes
6answers
698 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 ...
13
votes
3answers
169 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.
8
votes
8answers
615 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 ...
4
votes
5answers
224 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 ...
3
votes
0answers
55 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 ...
1
vote
1answer
231 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 ...
0
votes
0answers
41 views

directshow source filter for blu-ray playback

Are there Direct Show source filters that I can use in order to play Blu-Ray discs? For example, using filters from some commercial products like PowerDVD, then constructing the filter graph in my ...