ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Video-Capture-V4l/RTjpeg/RTjpeg.pm
Revision: 1.1
Committed: Fri May 5 20:21:52 2000 UTC (24 years, 2 months ago) by pcg
Branch: MAIN
CVS Tags: rel-0_9, rel-0_902, HEAD
Log Message:
Initial check-in

File Contents

# User Rev Content
1 pcg 1.1 package Video::RTjpeg;
2    
3     =head1 NAME
4    
5     Video::RTjpeg - Real time, jpeg-like video compression.
6    
7     =head1 SYNOPSIS
8    
9     use Video::RTjpeg;
10    
11     =head1 DESCRIPTION
12    
13     =cut
14    
15     BEGIN {
16     require Exporter;
17     require DynaLoader;
18     @ISA = ('Exporter', 'DynaLoader');
19     $VERSION = 0.012;
20     @EXPORT = qw(
21     );
22     bootstrap Video::RTjpeg $VERSION;
23     }
24    
25     1;