
418
Flix Engine Linux Page Documentation
"
Please make $i accessible or modify the $tt".
" value defined in ’$0’.
\n";
my $g=‘grep -m 1 -H -n ’^my \$outdir’ ’$0’‘;
if($g) {
print "The definition of $tt can be found here:
\n$g
\n";
}
print "****************************************
\n";
}
print "
";print "
Flix Function Calls\n";print "
Function Name | Return Value |
\n";leadin();
foreach my $p (param()) {
if(param($p) ne "") {
if ($p eq ’Flix2_SetOutputFile’) {
$outfile = $outdir.param($p);
setfunc($p,$outfile)
} elsif ($p =~ /(?:a|v)codec:/) {
init_codec(param($p));
} elsif (param($p) =~ /(?:a|v)filter:/) {
init_filter($p);
} elsif ($p =~ /muxer:/) {
init_muxer(param($p));
} elsif ($p =~ /CodecSetParam/) {
my @temp = split(/:/,$p);
codec_interface($temp[0],$temp[1],param($p));
} elsif ($p =~ /FilterSetParam/) {
my @temp = split(/:/,$p);
filter_interface($temp[0],$temp[1],param($p));
} elsif ($p =~ /MuxerSetParam/) {
my @temp = split(/:/,$p);
muxer_interface($temp[0],$temp[1],param($p));
} else {
#call an api function of the form FUNC(flixhandle,param)
setfunc($p,param($p));
}
}
}
encode();
print end_html;
# vim:ts=4:expandtab
Generated on Tue Jul 20 17:39:03 2010 for Flix Engine Linux by Doxygen