File: RTjpeg.pm

package info (click to toggle)
libvideo-capture-v4l-perl 0.902-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 644 kB
  • ctags: 323
  • sloc: perl: 2,749; ansic: 1,494; sh: 22; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 337 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package Video::RTjpeg;

=head1 NAME

Video::RTjpeg - Real time, jpeg-like video compression.

=head1 SYNOPSIS

   use Video::RTjpeg;

=head1 DESCRIPTION

=cut

BEGIN {
   require Exporter;
   require DynaLoader;
   @ISA = ('Exporter', 'DynaLoader');
   $VERSION = 0.012;
   @EXPORT = qw(
   );
   bootstrap Video::RTjpeg $VERSION;
}

1;