Mercurial > mplayer.hg
view TOOLS/menc2pass @ 7254:fed038dd80ea
Enable dvdkit on solaris
solaris has iconv() in libc.so, a separate libiconv.so library does not
exist. Only add a -liconv library when we were succesful compiling a
test program with the -liconv option.
--enable-debug does not work on solaris, because test "-g" in configure
script fails with a test error message "test: argument expected". Use
string comparision to test for a non empty $_debug / $_profile
author | jkeil |
---|---|
date | Tue, 03 Sep 2002 17:13:08 +0000 |
parents | 7a5021d0a2de |
children | ee0c2391e45d |
line wrap: on
line source
#!/usr/bin/perl -w # Helper script to ease MEncoder two pass encoding # Copyleft 2001 by Felix Buenemann <atmosfear@users.sourceforge.net> # This files comes udner GPL, see http://www.gnu.org/copyleft/gpl.html for more # information on it's licensing. use strict; my $mencoder="mencoder"; # Path to MEncoder (including binary name) die <<"EOF" unless @ARGV; Menc2Pass: No arguments given! Please give all usual encoding parameters you would give to mencoder, but leave away the -pass switch. EOF for(my $i=1; $i<=2; $i++) { system($mencoder,@ARGV," -pass $i") and die "MEncoder pass $i failed!\n" }