diff options
author | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-05 13:56:45 +0000 |
---|---|---|
committer | Thierry Vignaud <tvignaud@mandriva.org> | 2003-03-05 13:56:45 +0000 |
commit | fbcdc89dfd7f9f93e68715c32b70d9bd46da8dc6 (patch) | |
tree | 9667aa2722d84d4d47cda2ce6652d05932ccf7f4 /perl-install/standalone/drakxtv | |
parent | 51ec68a7c18b3cfa03e72861912830e4f66ed257 (diff) | |
download | drakx-fbcdc89dfd7f9f93e68715c32b70d9bd46da8dc6.tar drakx-fbcdc89dfd7f9f93e68715c32b70d9bd46da8dc6.tar.gz drakx-fbcdc89dfd7f9f93e68715c32b70d9bd46da8dc6.tar.bz2 drakx-fbcdc89dfd7f9f93e68715c32b70d9bd46da8dc6.tar.xz drakx-fbcdc89dfd7f9f93e68715c32b70d9bd46da8dc6.zip |
- (getTVcards, isTVcard) : consolidate tv detection code
- no need to keep capture buffer (not a big slow down but small rivers
make big ones...)
Diffstat (limited to 'perl-install/standalone/drakxtv')
-rwxr-xr-x | perl-install/standalone/drakxtv | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/drakxtv b/perl-install/standalone/drakxtv index 1325c7957..4c258dbf9 100755 --- a/perl-install/standalone/drakxtv +++ b/perl-install/standalone/drakxtv @@ -133,7 +133,7 @@ push @devices, { driver => 'bttv', description => 'dummy' } if $::testing && !@d if (@devices) { # TODO: That need some work for multiples TV cards foreach (@devices) { - if ($< == 0 && (grep { $_->{driver} =~ /(bttv|saa7134)/ } @devices)) { + if ($< == 0 && (grep { detect_devices::isTVcard($_) } @devices)) { require harddrake::v4l; require modules; no strict 'subs'; |