This file is indexed.

/usr/lib/x86_64-linux-gnu/perl5/5.26/pods/SDL/Mixer/MixChunk.pod is in libsdl-perl 2.546-3build1.

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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
=pod

=head1 NAME

SDL::Mixer::MixChunk -- SDL Bindings for structure SDL_MixChunk

=head1 CATEGORY

Mixer, Structure

=head1 SYNOPSIS

 use SDL;
 use SDL::Mixer::MixChunk;

 my $mix_chunk = SDL::Mixer::Music::load_WAV('sample.wav');

 printf("length of audio data is %d bytes\n", $mix_chunk->alen);
 printf("volume is %d\n",                     $mix_chunk->volume);

=head1 DESCRIPTION

Stores audio data in memory.

B<Note:> It's a bad idea to free a chunk that is still being played...

=head1 METHODS

=head2 alen

length of audio data in bytes

=head2 volume

Per-sample volume, 0-128 (normally C<MIX_MAX_VOLUME> after loading)

=head1 AUTHORS

See L<SDL/AUTHORS>.

=cut