This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.22/Video/RTjpeg.pm is in libvideo-capture-v4l-perl 0.902-3ubuntu5.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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;